9 lines
190 B
Python
9 lines
190 B
Python
from django.test import TestCase
|
|
from .models import Order, Bill
|
|
|
|
class BillTestCase(TestCase):
|
|
def setUp(self):
|
|
pass
|
|
|
|
def test_truth(self):
|
|
self.assertEqual(1+1, 2)
|