Pytest discovers tests automatically by looking for files named
test_<something>.py. The tests introduced in #41 were not using this
naming scheme and thus were not discoverable by pytest. This commit
renames the test file and rewrites the tests using pytest-style tests,
which result in slightly simpler code.
Pytest discovers tests automatically by looking for files named
test_<something>.py
. The tests introduced in #41 were not using this naming scheme and thus were not discoverable by pytest. This commit renames the test file and rewrites the tests using pytest-style tests, which result in slightly simpler code.Closes #47