| 149 | |
| 150 | |
| 151 | class DebugModeLocalVersionTest(TestCase): |
| 152 | |
| 153 | def test_local_version_returns_dummy_version_when_in_debug_mode(self): |
| 154 | # Enable debug mode. |
| 155 | with mock.patch.object(version, '_is_debug', return_value=True): |
| 156 | self.assertEqual('0.0.0-0+aaaaaaa', version.local_version()) |
nothing calls this directly
no outgoing calls
no test coverage detected