Exemplo n.º 1
0
 def test_is_apple_bunlde_returns_false_for_non_apple_bundle(self):
     self.assertFalse(_is_apple_bundle('net.hockeyapp.sdk.ios'))
Exemplo n.º 2
0
 def test_is_apple_bunlde_returns_true_for_apple_bundle(self):
     self.assertTrue(_is_apple_bundle('com.apple.PhoneNumbers'))
Exemplo n.º 3
0
 def test_is_apple_bunlde_returns_false_for_string_not_starting_with_com_apple(
         self):
     self.assertFalse(_is_apple_bundle('za.com.apple.PhoneNumbers'))
Exemplo n.º 4
0
 def test_is_apple_bunlde_returns_false_on_none(self):
     self.assertFalse(_is_apple_bundle(None))