Esempio n. 1
0
    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))
Esempio n. 2
0
    def test_cache_path_should_return_a_string(self):
        """
        Test cachePath(self)
        """
        sf = SpiderFoot(dict())

        cache_path = sf.cachePath()
        self.assertIsInstance(cache_path, str)