mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
Fix another duplicated test method.
This commit is contained in:
parent
ab3f5cbabd
commit
7ae6018788
1 changed files with 6 additions and 7 deletions
|
@ -86,13 +86,6 @@ class TestTemplate(unittest.TestCase):
|
||||||
s = Template('$who likes $100')
|
s = Template('$who likes $100')
|
||||||
raises(ValueError, s.substitute, dict(who='tim'))
|
raises(ValueError, s.substitute, dict(who='tim'))
|
||||||
|
|
||||||
def test_delimiter_override(self):
|
|
||||||
class PieDelims(Template):
|
|
||||||
delimiter = '@'
|
|
||||||
s = PieDelims('@who likes to eat a bag of @{what} worth $100')
|
|
||||||
self.assertEqual(s.substitute(dict(who='tim', what='ham')),
|
|
||||||
'tim likes to eat a bag of ham worth $100')
|
|
||||||
|
|
||||||
def test_idpattern_override(self):
|
def test_idpattern_override(self):
|
||||||
class PathPattern(Template):
|
class PathPattern(Template):
|
||||||
idpattern = r'[_a-z][._a-z0-9]*'
|
idpattern = r'[_a-z][._a-z0-9]*'
|
||||||
|
@ -183,6 +176,12 @@ class TestTemplate(unittest.TestCase):
|
||||||
raises(ValueError, s.substitute, dict(gift='bud', who='you'))
|
raises(ValueError, s.substitute, dict(gift='bud', who='you'))
|
||||||
eq(s.safe_substitute(), 'this &gift is for &{who} &')
|
eq(s.safe_substitute(), 'this &gift is for &{who} &')
|
||||||
|
|
||||||
|
class PieDelims(Template):
|
||||||
|
delimiter = '@'
|
||||||
|
s = PieDelims('@who likes to eat a bag of @{what} worth $100')
|
||||||
|
self.assertEqual(s.substitute(dict(who='tim', what='ham')),
|
||||||
|
'tim likes to eat a bag of ham worth $100')
|
||||||
|
|
||||||
|
|
||||||
def test_main():
|
def test_main():
|
||||||
from test import test_support
|
from test import test_support
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue