Set up test fixtures.
(self)
| 174 | """Test BdistAPK, BdistAAR, BdistAAB subclasses.""" |
| 175 | |
| 176 | def setup_method(self): |
| 177 | """Set up test fixtures.""" |
| 178 | self.distribution = Distribution({ |
| 179 | 'name': 'TestApp', |
| 180 | 'version': '1.0.0', |
| 181 | }) |
| 182 | self.distribution.package_data = {} |
| 183 | |
| 184 | def test_bdist_apk_package_type(self): |
| 185 | """Test BdistAPK has correct package_type.""" |
nothing calls this directly
no test coverage detected