예제 #1
0
파일: test_license.py 프로젝트: wzab/vunit
 def test_that_license_file_matches_vunit_license_text(self):
     with open(join(ROOT, 'LICENSE.txt'), "rU") as lic:
         self.assertEqual(lic.read(), license_text())
예제 #2
0
 def test_that_license_file_matches_vunit_license_text(self):
     with catch_warnings():
         simplefilter("ignore", category=DeprecationWarning)
         with (ROOT / "LICENSE.txt").open("rU") as lic:
             self.assertEqual(lic.read(), license_text())
예제 #3
0
파일: test_license.py 프로젝트: barri/vunit
 def test_that_license_file_matches_vunit_license_text(self):
     with open(join(ROOT, 'LICENSE.txt'), "rU") as lic:
         self.assertEqual(lic.read(), license_text())
예제 #4
0
 def test_that_license_file_matches_vunit_license_text(self):
     with catch_warnings():
         simplefilter("ignore", category=DeprecationWarning)
         with open(join(ROOT, 'LICENSE.txt'), "rU") as lic:
             self.assertEqual(lic.read(), license_text())