anisotropy/tests/test_anisotropy.py

18 lines
349 B
Python
Raw Normal View History

2021-08-02 16:36:06 +05:00
import os
class TestAnisotropy:
def test_import(self):
import anisotropy
def test_db(self):
import anisotropy
a = anisotropy.Anisotropy()
a.setupDB()
a.evalEnvParameters()
a.updateDB()
if os.path.exists("build/anisotropy.db"):
os.remove("build/anisotropy.db")