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
« prev ^ index » next coverage.py v7.4.3, created at 2024-03-12 13:49 +0000
1from django.db.utils import IntegrityError
3from django_napse.core.models import Currency
4from django_napse.utils.model_test_case import ModelTestCase
6"""
7python tests/test_app/manage.py test tests.django_tests.wallets.test_currency -v2 --keepdb --parallel
8"""
11class CurrencyTestCase:
12 model = Currency
14 def setUp(self) -> None:
15 self.wallet = self.space.wallet
17 def simple_create(self):
18 return Currency.objects.create(wallet=self.wallet, ticker="BTC", amount=1, mbp=20000)
20 def test_create_currency(self):
21 Currency.objects.create(wallet=self.wallet, ticker="BTC", amount=1, mbp=20000)
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)
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)
33class CurrencyBINANCETestCase(CurrencyTestCase, ModelTestCase):
34 exchange = "BINANCE"