edit tests

This commit is contained in:
Bastian Schroll 2018-01-11 12:59:53 +01:00
parent f14a78984a
commit 0c7fc84089
6 changed files with 74 additions and 72 deletions

View file

@ -18,7 +18,7 @@
# import pytest # import the pytest framework
import boswatch.utils.header
from boswatch.utils import header
class Test_Header:
@ -26,12 +26,12 @@ class Test_Header:
def test_logoToLog(self):
"""!Test logo to log"""
assert boswatch.utils.header.logoToLog()
assert header.logoToLog()
def test_infoToLog(self):
"""!Test info to log"""
assert boswatch.utils.header.infoToLog()
assert header.infoToLog()
def test_logoToScreen(self):
"""!Test logo to screen"""
assert boswatch.utils.header.logoToScreen()
assert header.logoToScreen()