mirror of
https://github.com/simon987/Simple-Incremental-Search-Tool.git
synced 2025-04-19 10:16:41 +00:00
11 lines
143 B
Python
11 lines
143 B
Python
from unittest import TestCase
|
|
|
|
from crawler import Crawler
|
|
|
|
|
|
class CrawlerTest(TestCase):
|
|
|
|
def test_dir_walk(self):
|
|
c = Crawler()
|
|
|