Пример #1
0
 def test_invalid(self):
     with pytest.raises(Dump2PolarionException) as excinfo:
         _get_importer("workitems.txt")
     assert "Cannot recognize type of input data, add file extension" in str(
         excinfo.value)
Пример #2
0
 def test_db(self, ext):
     importer = _get_importer("workitems{}".format(ext))
     assert importer == import_sqlite
Пример #3
0
 def test_csv(self):
     importer = _get_importer("workitems.csv")
     assert importer == import_csv
Пример #4
0
 def test_junit(self):
     importer = _get_importer("test_junit.xml")
     assert importer == import_junit
Пример #5
0
 def test_ostriz_remote(self):
     importer = _get_importer(
         "http://trackerbot/ostriz/jenkins/jenkins/downstream-58z-extcloud-tests-master"
     )
     assert importer == import_ostriz
Пример #6
0
 def test_ostriz_local(self):
     importer = _get_importer("test_ostriz_file.json")
     assert importer == import_ostriz