| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| Expand Up | @@ -475,6 +475,61 @@ class PieDelims(Template): | |
| self.assertEqual(s.substitute(dict(who='tim', what='ham')), | ||
| 'tim likes to eat a bag of ham worth $100') | ||
|
|
||
| # TODO: RUSTPYTHON | ||
| @unittest.expectedFailure | ||
| def test_is_valid(self): | ||
| eq = self.assertEqual | ||
| s = Template('$who likes to eat a bag of ${what} worth $$100') | ||
| self.assertTrue(s.is_valid()) | ||
|
|
||
| s = Template('$who likes to eat a bag of ${what} worth $100') | ||
| self.assertFalse(s.is_valid()) | ||
|
|
||
| # if the pattern has an unrecognized capture group, | ||
| # it should raise ValueError like substitute and safe_substitute do | ||
| class BadPattern(Template): | ||
| pattern = r""" | ||
| (?P<badname>.*) | | ||
| (?P<escaped>@{2}) | | ||
| @(?P<named>[_a-z][._a-z0-9]*) | | ||
| @{(?P<braced>[_a-z][._a-z0-9]*)} | | ||
| (?P<invalid>@) | | ||
| """ | ||
| s = BadPattern('@bag.foo.who likes to eat a bag of @bag.what') | ||
| self.assertRaises(ValueError, s.is_valid) | ||
|
|
||
| # TODO: RUSTPYTHON | ||
| @unittest.expectedFailure | ||
|
Comment thread
Comment on lines
+501
to
+502
Copy link
Copy Markdown
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low Quality@youknowone This should have been broken out into a separate commit.
Sorry, something went wrong.
All reactions
|
||
| def test_get_identifiers(self): | ||
| eq = self.assertEqual | ||
| raises = self.assertRaises | ||
| s = Template('$who likes to eat a bag of ${what} worth $$100') | ||
| ids = s.get_identifiers() | ||
| eq(ids, ['who', 'what']) | ||
|
|
||
| # repeated identifiers only included once | ||
| s = Template('$who likes to eat a bag of ${what} worth $$100; ${who} likes to eat a bag of $what worth $$100') | ||
| ids = s.get_identifiers() | ||
| eq(ids, ['who', 'what']) | ||
|
|
||
| # invalid identifiers are ignored | ||
| s = Template('$who likes to eat a bag of ${what} worth $100') | ||
| ids = s.get_identifiers() | ||
| eq(ids, ['who', 'what']) | ||
|
|
||
| # if the pattern has an unrecognized capture group, | ||
| # it should raise ValueError like substitute and safe_substitute do | ||
| class BadPattern(Template): | ||
| pattern = r""" | ||
| (?P<badname>.*) | | ||
| (?P<escaped>@{2}) | | ||
| @(?P<named>[_a-z][._a-z0-9]*) | | ||
| @{(?P<braced>[_a-z][._a-z0-9]*)} | | ||
| (?P<invalid>@) | | ||
| """ | ||
| s = BadPattern('@bag.foo.who likes to eat a bag of @bag.what') | ||
| self.assertRaises(ValueError, s.get_identifiers) | ||
|
|
||
|
|
||
| if __name__ == '__main__': | ||
| unittest.main() | ||
| Back | FazBrowse Home | New Git URL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low Quality@youknowone This should have been broken out into a separate commit.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.