(self, expr)
| 12 | |
| 13 | class TestSimpleEval(unittest.TestCase): |
| 14 | def assertMatchesStdlib(self, expr): |
| 15 | self.assertEqual(ast.literal_eval(expr), simple_eval(expr)) |
| 16 | |
| 17 | def test_matches_stdlib(self): |
| 18 | """Should match the stdlib literal_eval if no names or indexing""" |
no test coverage detected