Rev 207: Modified sample_messages to use a template. in http://bzr.daniel-watkins.co.uk/pqm/xmlrpc

Daniel Watkins daniel at daniel-watkins.co.uk
Fri Aug 1 02:27:00 BST 2008


At http://bzr.daniel-watkins.co.uk/pqm/xmlrpc

------------------------------------------------------------
revno: 207
revision-id: daniel at daniel-watkins.co.uk-20080801012523-jabhwx6k9o33r7od
parent: daniel at daniel-watkins.co.uk-20080801010152-y7lskmc4fqy6vc8o
committer: Daniel Watkins <daniel at daniel-watkins.co.uk>
branch nick: xmlrpc-validation
timestamp: Fri 2008-08-01 02:25:23 +0100
message:
  Modified sample_messages to use a template.
-------------- next part --------------
=== modified file 'pqm/tests/__init__.py'
--- a/pqm/tests/__init__.py	2008-08-01 00:42:41 +0000
+++ b/pqm/tests/__init__.py	2008-08-01 01:25:23 +0000
@@ -5,23 +5,23 @@
 from bzrlib.tests import TestCaseWithTransport
 
 
-sample_message = dedent("""\
-    From: John.Citizen at example.com
-    Subject: A new action
-    star-merge http://www.example.com/foo/bar http://www.example.com/bar/baz
-    """)
-
-sample_message_2 = dedent("""\
-    From: John.Citizen at example.com
-    Subject: A new action
-    star-merge http://www.example.com/qux/thud http://www.example.com/fred/waldo
-    """)
-
-sample_message_bad = dedent("""\
-    From: John.Citizen at example.com
-    Subject: A new action
-    star-merge http://www.example.com/foo/bar http://www.example.com/foo/unregistered
-    """)
+sample_message_template = dedent("""\
+    From: John.Citizen at example.com
+    Subject: A new action
+    %s
+    """)
+
+sample_message = (sample_message_template %
+    ("star-merge http://www.example.com/foo/bar"
+     " http://www.example.com/bar/baz",))
+
+sample_message_2 = (sample_message_template %
+    ("star-merge http://www.example.com/qux/thud"
+     " http://www.example.com/fred/waldo",))
+
+sample_message_bad = (sample_message_template %
+    ("star-merge http://www.example.com/foo/bar"
+     " http://www.example.com/foo/unregistered",))
 
 
 class QueueSetup(object):



More information about the bazaar-commits mailing list