mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-04 06:18:48 +00:00
10 lines
138 B
Python
10 lines
138 B
Python
from django.test import TestCase
|
|
|
|
from .models import Part, BomItem
|
|
|
|
|
|
class BomItemTest(TestCase):
|
|
|
|
def setUp(self):
|
|
pass
|
|
|