Пример #1
0
 def test_shading_exclude_package(self):
     self.assertEqual(("com.foo.bar.**", "com.foo.bar.@1"),
                      Shading.create_exclude_package("com.foo.bar"))
     self.assertEqual(
         ("com.foo.bar.*", "com.foo.bar.@1"),
         Shading.create_exclude_package("com.foo.bar", recursive=False),
     )
Пример #2
0
 def test_shading_exclude_package(self):
   self.assertEqual(('com.foo.bar.**', 'com.foo.bar.@1'),
                    Shading.create_exclude_package('com.foo.bar'))
   self.assertEqual(('com.foo.bar.*', 'com.foo.bar.@1'),
                    Shading.create_exclude_package('com.foo.bar', recursive=False))
Пример #3
0
 def test_shading_exclude_package(self):
     self.assertEqual(('com.foo.bar.**', 'com.foo.bar.@1'),
                      Shading.create_exclude_package('com.foo.bar'))
     self.assertEqual(('com.foo.bar.*', 'com.foo.bar.@1'),
                      Shading.create_exclude_package('com.foo.bar',
                                                     recursive=False))
Пример #4
0
 def test_shading_exclude_package(self):
     self.assertEqual(("com.foo.bar.**", "com.foo.bar.@1"), Shading.create_exclude_package("com.foo.bar"))
     self.assertEqual(
         ("com.foo.bar.*", "com.foo.bar.@1"), Shading.create_exclude_package("com.foo.bar", recursive=False)
     )