assert error occurs on baddata
This commit is contained in:
parent
03650d27ef
commit
ccf9466380
@ -36,10 +36,8 @@ class TestFitnotesImport(TestCase):
|
|||||||
def test_bad_import(self):
|
def test_bad_import(self):
|
||||||
# good db then bad db, should fail without screwing up existing data
|
# good db then bad db, should fail without screwing up existing data
|
||||||
import_fitnotes_db('lifting/testdata/example.fitnotes')
|
import_fitnotes_db('lifting/testdata/example.fitnotes')
|
||||||
try:
|
with self.assertRaises(Exception):
|
||||||
# baddata.fitnotes has all exercise ids set to 9999
|
# baddata.fitnotes has all exercise ids set to 9999
|
||||||
import_fitnotes_db('lifting/testdata/baddata.fitnotes')
|
import_fitnotes_db('lifting/testdata/baddata.fitnotes')
|
||||||
except Exception:
|
|
||||||
pass
|
|
||||||
assert Exercise.objects.count() == 2
|
assert Exercise.objects.count() == 2
|
||||||
assert Set.objects.count() == 9
|
assert Set.objects.count() == 9
|
||||||
|
Loading…
Reference in New Issue
Block a user