(self)
| 7 | class TestSeaborn(unittest.TestCase): |
| 8 | # Fails if seaborn gets downgraded by other package installations. |
| 9 | def test_version(self): |
| 10 | self.assertGreaterEqual(StrictVersion(sns.__version__), StrictVersion("0.12.0")) |
| 11 | |
| 12 | |
| 13 | def test_option(self): |
nothing calls this directly
no outgoing calls
no test coverage detected