()
| 48 | nt.assert_true(len(linecache.cache) > ncache) |
| 49 | |
| 50 | def test_proper_default_encoding(): |
| 51 | # Check we're in a proper Python 2 environment (some imports, such |
| 52 | # as GTK, can change the default encoding, which can hide bugs.) |
| 53 | nt.assert_equal(sys.getdefaultencoding(), "utf-8") |
| 54 | |
| 55 | def test_cache_unicode(): |
| 56 | cp = compilerop.CachingCompiler() |
nothing calls this directly
no outgoing calls
no test coverage detected