CCI-MOC / flocx-market

2 stars 9 forks source link

Correct tests introduced in #41 #48

Closed larsks closed 5 years ago

larsks commented 5 years ago

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