Coverage for tests/django_tests/db/wallets/test_currency.py: 100%

21 statements  

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

1from django.db.utils import IntegrityError 

2 

3from django_napse.core.models import Currency 

4from django_napse.utils.model_test_case import ModelTestCase 

5 

6""" 

7python tests/test_app/manage.py test tests.django_tests.wallets.test_currency -v2 --keepdb --parallel 

8""" 

9 

10 

11class CurrencyTestCase: 

12 model = Currency 

13 

14 def setUp(self) -> None: 

15 self.wallet = self.space.wallet 

16 

17 def simple_create(self): 

18 return Currency.objects.create(wallet=self.wallet, ticker="BTC", amount=1, mbp=20000) 

19 

20 def test_create_currency(self): 

21 Currency.objects.create(wallet=self.wallet, ticker="BTC", amount=1, mbp=20000) 

22 

23 def test_duplicate_currency_for_a_wallet(self): 

24 Currency.objects.create(wallet=self.wallet, ticker="BTC", amount=1, mbp=20000) 

25 with self.assertRaises(IntegrityError): 

26 Currency.objects.create(wallet=self.wallet, ticker="BTC", amount=1, mbp=20000) 

27 

28 def test_property_testing(self): 

29 currency = Currency.objects.create(wallet=self.wallet, ticker="BTC", amount=1, mbp=20000) 

30 self.assertTrue(currency.testing) 

31 

32 

33class CurrencyBINANCETestCase(CurrencyTestCase, ModelTestCase): 

34 exchange = "BINANCE"