def test_cache_path_should_return_a_string(self): """ Test cachePath(self) """ sf = SpiderFoot(dict()) cache_path = sf.cachePath() self.assertEqual(str, type(cache_path))
def test_cache_path_should_return_a_string(self): """ Test cachePath(self) """ sf = SpiderFoot(dict()) cache_path = sf.cachePath() self.assertIsInstance(cache_path, str)