diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-04-11 17:26:00 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-04-11 17:26:00 -0700 |
commit | c3ae6357b4824450263d727dc5d23b5cf0e9305f (patch) | |
tree | e8ab16da1e401557f48375fae7f3e2127e03b3b6 /tests | |
parent | 8e670a0aa2e1d61145a38b9f915b6fdd67429c47 (diff) | |
download | fatcat-c3ae6357b4824450263d727dc5d23b5cf0e9305f.tar.gz fatcat-c3ae6357b4824450263d727dc5d23b5cf0e9305f.zip |
more complex test data
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_backend.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/test_backend.py b/tests/test_backend.py index 345c8a95..07a2a906 100644 --- a/tests/test_backend.py +++ b/tests/test_backend.py @@ -53,6 +53,8 @@ class FatcatTestCase(unittest.TestCase): assert obj['title'] assert obj['work_type'] == "journal-article" - def test_something(self): - + def test_populate(self): fatcat.sql.populate_db() + + def test_populate_complex(self): + fatcat.sql.populate_complex_db() |