diff options
| author | stuppie | 2026-08-18 19:09:22 -0600 |
|---|---|---|
| committer | stuppie | 2026-08-18 19:09:22 -0600 |
| commit | 28729d407470407bbc78bc7fb6574953b2f03f59 (patch) | |
| tree | 698a5820105f0ff02c93b5205faee7747fcb6ad9 /tests/models/morning/test.py | |
| parent | 4d4fce08f3a4c9dbd78fdacf3193b345cf982da3 (diff) | |
| parent | 0742210fc7eaa54d8068bfd18414158dc9b33672 (diff) | |
| download | generalresearch-28729d407470407bbc78bc7fb6574953b2f03f59.tar.gz generalresearch-28729d407470407bbc78bc7fb6574953b2f03f59.zip | |
Merge branch 'master' of ssh://code.g-r-l.com/generalresearch
Diffstat (limited to 'tests/models/morning/test.py')
| -rw-r--r-- | tests/models/morning/test.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/models/morning/test.py b/tests/models/morning/test.py index cf4982d..bedf9c2 100644 --- a/tests/models/morning/test.py +++ b/tests/models/morning/test.py @@ -185,8 +185,11 @@ class TestMorningBid: from generalresearch.models.morning.survey import MorningBid s = MorningBid.model_validate(bid) - d = s.model_dump(mode="json") - d = s.to_mysql() + res = s.model_dump(mode="json") + assert isinstance(res, dict) + + res = s.to_mysql() + assert isinstance(res, dict) def test_manager(self): # todo: credentials n stuff |
