summaryrefslogtreecommitdiff
path: root/_test/test_base.py
blob: ef87b5dbcd9279093cdb935b078ed091236927c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# coding: utf-8

from __future__ import print_function

import pytest          # QAOK


# default for tox stub is to Fail
def test_base():
    import ruamel
    with pytest.raises(ImportError):
        import ruamel.std
        print(ruamel.std.__file__)   # to suppress flake msg
    assert True