12 lines
223 B
Python
12 lines
223 B
Python
|
import utils as utils
|
||
|
|
||
|
|
||
|
def test1():
|
||
|
filename = 'test/compare.txt'
|
||
|
utils.file_exist(filename)
|
||
|
utils.compareFolders(r'..\SnatchCompetition', r"..\ProjectTemp1", filename)
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
test1()
|