(self, cache)
| 2555 | eq_(cache("name1"), 1) |
| 2556 | |
| 2557 | def test_multiple_string(self, cache): |
| 2558 | # new value |
| 2559 | eq_(cache("name1"), 1) |
| 2560 | eq_(cache("name2"), 2) |
| 2561 | |
| 2562 | # same values, counter not incremented |
| 2563 | eq_(cache("name1"), 1) |
| 2564 | eq_(cache("name2"), 2) |
| 2565 | |
| 2566 | def test_single_quoted_name(self, cache, quote): |
| 2567 | # new value |