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

9 statements  

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

1from django_napse.core.models import Controller, SinglePairArchitecture 

2from django_napse.utils.model_test_case import ModelTestCase 

3 

4""" 

5python tests/test_app/manage.py test tests.django_tests.bots.test_architecture -v2 --keepdb --parallel 

6""" 

7 

8 

9class ArchitectureTestCase: 

10 model = SinglePairArchitecture 

11 

12 def simple_create(self): 

13 return self.model.objects.create( 

14 constants={ 

15 "controller": Controller.get( 

16 exchange_account=self.exchange_account, 

17 base="BTC", 

18 quote="USDT", 

19 interval="1m", 

20 ), 

21 }, 

22 ) 

23 

24 

25class SinglePairArchitectureBINANCETestCase(ArchitectureTestCase, ModelTestCase): 

26 exchange = "BINANCE"