Dump test placeholder for uncloud_pay

This commit is contained in:
fnux 2020-03-06 09:02:25 +01:00
parent d089d06264
commit 948391ab2e

View file

@ -1,3 +1,9 @@
from django.test import TestCase
from .models import Order, Bill
# Create your tests here.
class BillTestCase(TestCase):
def setUp(self):
pass
def test_truth(self):
self.assertEqual(1+1, 2)