diff --git a/tests/test_init.py b/tests/test_init.py deleted file mode 100644 index f7bf17a..0000000 --- a/tests/test_init.py +++ /dev/null @@ -1,11 +0,0 @@ -import pytest -from technique_inference_engine import palindrome - - -# TODO Replace with tests for your modules. -def test_palindrome(): - assert palindrome("racecar") - assert not palindrome("vroom") - assert palindrome("abba") - assert palindrome("zzz") - assert not palindrome("abcdef") diff --git a/tests/test_utils.py b/tests/test_utils.py index 5f18325..59f41c4 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -1,7 +1,7 @@ import unittest import math import pandas as pd -from models import utils +import tie.utils as utils import numpy as np from sklearn.metrics import ndcg_score