aboutsummaryrefslogtreecommitdiff
path: root/tests/test_market.py
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2018-04-07 23:23:10 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2018-04-08 00:52:51 +0200
commit1d72880c097ea8259ce9cc63cfe55e6cc7516bd2 (patch)
tree44d7f9089468f35277bb8d0257da0f3a3bb88448 /tests/test_market.py
parente7d7c0e5645da35adcbfec9e51deb68f012c422f (diff)
downloadTrader-1d72880c097ea8259ce9cc63cfe55e6cc7516bd2.tar.gz
Trader-1d72880c097ea8259ce9cc63cfe55e6cc7516bd2.tar.zst
Trader-1d72880c097ea8259ce9cc63cfe55e6cc7516bd2.zip
Add acceptance tests
Fixes https://git.immae.eu/mantisbt/view.php?id=42 (new scenario files still need to be added to improve coverage)
Diffstat (limited to 'tests/test_market.py')
-rw-r--r--tests/test_market.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test_market.py b/tests/test_market.py
index 14b23b5..fd23162 100644
--- a/tests/test_market.py
+++ b/tests/test_market.py
@@ -2,7 +2,6 @@ from .helper import *
2import market, store, portfolio 2import market, store, portfolio
3import datetime 3import datetime
4 4
5@unittest.skipUnless("unit" in limits, "Unit skipped")
6class MarketTest(WebMockTestCase): 5class MarketTest(WebMockTestCase):
7 def setUp(self): 6 def setUp(self):
8 super().setUp() 7 super().setUp()
@@ -730,7 +729,6 @@ class MarketTest(WebMockTestCase):
730 store_report.assert_called_once() 729 store_report.assert_called_once()
731 730
732 731
733@unittest.skipUnless("unit" in limits, "Unit skipped")
734class ProcessorTest(WebMockTestCase): 732class ProcessorTest(WebMockTestCase):
735 def test_values(self): 733 def test_values(self):
736 processor = market.Processor(self.m) 734 processor = market.Processor(self.m)