Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(500)

Unified Diff: grit/format/policy_templates/writers/ios_plist_writer_unittest.py

Issue 642443004: Add a chromium version to policy template files. (Closed) Base URL: http://grit-i18n.googlecode.com/svn/trunk/
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: grit/format/policy_templates/writers/ios_plist_writer_unittest.py
===================================================================
--- grit/format/policy_templates/writers/ios_plist_writer_unittest.py (revision 177)
+++ grit/format/policy_templates/writers/ios_plist_writer_unittest.py (working copy)
@@ -55,11 +55,17 @@
expected_output,
parse,
decode_and_parse):
+
+
+ _defines = { '_chromium': '1',
+ 'mac_bundle_id': 'com.example.Test',
+ 'version': '39.0.0.0' }
+
# Generate the grit output for |templates|.
output = self.GetOutput(
self.PrepareTest(templates),
'fr',
- { '_chromium': '1', 'mac_bundle_id': 'com.example.Test' },
+ _defines,
'ios_plist',
'en')
@@ -124,6 +130,17 @@
expected = {}
self._VerifyGeneratedOutput(templates, expected)
+ def testEmptyVersion(self):
+ templates = '''
+ {
+ 'policy_definitions': [],
+ 'placeholders': [],
+ 'messages': {},
+ }
+ '''
+ expected = {}
+ self._VerifyGeneratedOutput(templates, expected)
+
def testBoolean(self):
templates = self._MakeTemplate('BooleanPolicy', 'main', 'True')
expected = {
« no previous file with comments | « grit/format/policy_templates/writers/ios_plist_writer.py ('k') | grit/format/policy_templates/writers/json_writer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698