| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | from nose.tools import ok_ |
||
| 2 | |||
| 3 | import oemof |
||
| 4 | import oemof.db as oemofdb |
||
| 5 | |||
| 6 | |||
| 7 | def test_that_oemof_is_importable(): |
||
| 8 | ok_(oemof.__version__) |
||
| 9 | |||
| 10 | |||
| 11 | def test_oemofdb_imports(): |
||
| 12 | ok_(oemofdb.connection) |
||
| 13 | ok_(oemofdb.engine) |
||
| 14 | ok_(oemofdb.url) |
||
| 15 |