def test_package_path(self): self.assertEqual("com", AaptTask.package_path("com"))
def test_package_path(self): self.assertEqual('com', AaptTask.package_path('com'))
def test_package_path_translation(self): self.assertEqual( os.path.join("com", "pants", "example", "tests"), AaptTask.package_path("com.pants.example.tests") )
def test_package_path_translation(self): self.assertEqual(os.path.join('com', 'pants', 'example', 'tests'), AaptTask.package_path('com.pants.example.tests'))