| Total Complexity | 4 | 
| Total Lines | 12 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | import unittest | ||
| 8 | class TestDf3Tools(unittest.TestCase): | ||
| 9 | |||
| 10 | def tearDown(self): | ||
| 11 |         for filename in glob.glob("*.tga"): | ||
| 12 | os.remove(filename) | ||
| 13 |         for filename in glob.glob("*.df3"): | ||
| 14 | os.remove(filename) | ||
| 15 | |||
| 16 | def test_full_cycle(self): | ||
| 17 |         df3split.df3split('data/clouds.df3') | ||
| 18 |         self.assertEqual(len(glob.glob("*.tga")), 133) | ||
| 19 |         df3combine.df3combine('clouds.df3') | ||
| 20 | 
The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:
If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.