コード例 #1
0
def test_init_not_qvd_or_bad_file():

    with pytest.raises(BadFormat):
        qvd = QvdFile(__file__)
コード例 #2
0
def bigqvd():
    """ standard setup for tests with bigger qvd"""

    yield QvdFile("data/tab2.qvd")
コード例 #3
0
def test_init_no_file():

    with pytest.raises(FileNotFoundError):
        qvd = QvdFile("data/no_such_file.qvd")
コード例 #4
0
def qvd():
    """ standard setup for most of the tests """

    yield QvdFile("data/tab1.qvd")