uncloud/uncloud/uncloud_pay/tests.py

10 lines
190 B
Python
Raw Normal View History

from django.test import TestCase
2020-03-06 08:02:25 +00:00
from .models import Order, Bill
2020-03-06 08:02:25 +00:00
class BillTestCase(TestCase):
def setUp(self):
pass
def test_truth(self):
self.assertEqual(1+1, 2)