Beispiel #1
0
 def test_string(self):
     self.assertTrue(YumReleaseverSource.is_not_empty("Super"))
Beispiel #2
0
 def test_number(self):
     self.assertTrue(YumReleaseverSource.is_not_empty("7"))
Beispiel #3
0
 def test_none(self):
     self.assertFalse(YumReleaseverSource.is_not_empty(None))
Beispiel #4
0
 def test_empty_list(self):
     self.assertFalse(YumReleaseverSource.is_not_empty([]))
Beispiel #5
0
 def test_empty_string(self):
     self.assertFalse(YumReleaseverSource.is_not_empty(""))