2018-06-23 23:05:02 +00:00
|
|
|
import pytest
|
|
|
|
from django.contrib.auth.models import User
|
|
|
|
|
|
|
|
from . import models
|
|
|
|
|
|
|
|
# @pytest.fixture
|
|
|
|
# def test():
|
|
|
|
# do stuff
|
|
|
|
|
2019-08-31 22:27:36 +00:00
|
|
|
|
2018-06-23 23:05:02 +00:00
|
|
|
@pytest.mark.django_db
|
|
|
|
def test_balance():
|
|
|
|
user = User.objects.create_user("test", "lala@adas.com", "1234")
|
2019-08-31 22:27:36 +00:00
|
|
|
account = models.Account.objects.create(owner=user)
|
2018-06-23 23:05:02 +00:00
|
|
|
assert account.balance == 0
|