Пример #1
0
 def test_has_keyword_table_should_return_false(self):
     data = "*** Keys ***"
     result = RfhubImporter._has_keyword_table(data=data)
     self.assertFalse(
         result, "method should return false if Keywords were not found")
Пример #2
0
 def test_has_keyword_table_should_return_true(self):
     data = "*** Keywords ***"
     result = RfhubImporter._has_keyword_table(data=data)
     self.assertTrue(result,
                     "method should return true if Keywords were found")