Fixed cpl g path problems & package names #93

This commit is contained in:
2022-11-30 18:04:40 +01:00
parent f0a8d69e22
commit 1bbec27d1a
61 changed files with 153 additions and 86 deletions

View File

@@ -78,7 +78,7 @@ class BuildTestCase(unittest.TestCase):
def test_build(self):
CLICommands.build()
dist_path = './dist'
full_dist_path = f'{dist_path}/{self._source}/build/{String.convert_to_snake_case(self._source)}'
full_dist_path = f'{dist_path}/{self._source}/build/'
self.assertTrue(os.path.exists(dist_path))
self.assertTrue(os.path.exists(full_dist_path))
self.assertFalse(self._are_dir_trees_equal(f'./src/{String.convert_to_snake_case(self._source)}', full_dist_path))