toxygen/tests/tests.py

45 lines
912 B
Python
Raw Normal View History

2016-02-17 21:32:15 +00:00
from src.settings import Settings
2016-02-18 12:26:50 +00:00
from src.tox import Tox
import sys
2016-02-18 16:15:38 +00:00
from src.profile import Profile
2016-02-18 12:26:50 +00:00
import os
2016-02-17 21:32:15 +00:00
class TestSettings():
2016-02-18 12:26:50 +00:00
2016-02-17 21:32:15 +00:00
def test_creation(self):
s = Settings()
assert s['ipv6_enabled'] is not None
assert s['notifications'] is not None
2016-02-18 12:26:50 +00:00
def test_with_delete(self):
path = Settings.get_default_path() + 'toxygen.json'
os.remove(path)
Settings()
assert os.path.exists(path)
class TestTox():
def test_creation(self):
try:
tox = Tox('tox_save')
assert tox.tox_options is not None
del tox
except:
assert 0
def test_init(self):
try:
tox = Tox('tox_save')
assert tox.get_savedata_size()
except:
assert 0
2016-02-18 16:15:38 +00:00
class TestProfile():
def test_search(self):
arr = Profile.find_profiles()
assert arr