Coverage for tests/django_tests/db/bots/test_strategies/test_empty_bot.py: 100%

13 statements  

« prev     ^ index     » next       coverage.py v7.4.3, created at 2024-03-12 13:49 +0000

1from typing import ClassVar 

2 

3from django_napse.core.models import Controller, EmptyStrategy 

4from django_napse.utils.model_test_case import ModelTestCase 

5from tests.django_tests.db.bots.test_strategy import StrategyDefaultTestCase 

6 

7""" 

8python tests/test_app/manage.py test tests.django_tests.bots.test_strategies.test_empty_bot -v2 --keepdb --parallel 

9""" 

10 

11 

12class EmptyBotTestCase(StrategyDefaultTestCase): 

13 model = EmptyStrategy 

14 config_settings: ClassVar = {"empty": True} 

15 

16 @property 

17 def architecture_constants(self): 

18 return { 

19 "controller": Controller.get( 

20 exchange_account=self.exchange_account, 

21 base="BTC", 

22 quote="USDT", 

23 interval="1m", 

24 ), 

25 } 

26 

27 

28class EmptyBotBINANCETestCase(EmptyBotTestCase, ModelTestCase): 

29 exchange = "BINANCE"