Skip to content

Commit

Permalink
#93: Add investigation
Browse files Browse the repository at this point in the history
  • Loading branch information
keiranjprice101 committed Oct 23, 2019
1 parent 5271333 commit 1f55522
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/test_entityHelper.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import datetime
from unittest import TestCase

from common.models.db_models import DATAFILE, DATASET, DATAFILEFORMAT
from common.models.db_models import DATAFILE, DATASET, DATAFILEFORMAT, INVESTIGATION


class TestEntityHelper(TestCase):
def setUp(self):
self.dataset = DATASET()
self.investigation = INVESTIGATION()
self.dataset.INVESTIGATION = self.investigation
self.datafileformat = DATAFILEFORMAT()
self.datafile = DATAFILE()
self.datafile.ID = 1
Expand Down

0 comments on commit 1f55522

Please sign in to comment.