예제 #1
0
파일: test.py 프로젝트: pmallory/StaticSite
 def test_diff4(self):
    assert generate.diff('txt', 'invalid file!') is False
예제 #2
0
파일: test.py 프로젝트: pmallory/StaticSite
 def test_diff2(self):
     assert generate.diff('nope', './file.html') is False 
예제 #3
0
파일: test.py 프로젝트: pmallory/StaticSite
 def test_diff3(self):
     assert generate.diff('./file.html', 'txt') is False
예제 #4
0
파일: test.py 프로젝트: pmallory/StaticSite
 def test_diff1(self):
     assert generate.diff('hello world!', './file.html')