mirror of
				https://github.com/simon987/Simple-Incremental-Search-Tool.git
				synced 2025-11-04 01:06:52 +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()
 | 
						|
 |