10 lines
181 B
Python
10 lines
181 B
Python
import unittest
|
|
from costs.cost import Cost
|
|
|
|
|
|
class TestCosts(unittest.TestCase):
|
|
def test_costs(self):
|
|
cost = Cost()
|
|
self.assertEqual(True, False) # add assertion here
|
|
|