2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 04:55:44 +00:00

Add unit test for CompanyIndex

This commit is contained in:
Oliver Walters
2019-09-30 13:44:19 +10:00
parent be96a2f7e3
commit d1c7877713
2 changed files with 9 additions and 0 deletions

View File

@ -29,6 +29,12 @@ class CompanyViewTest(TestCase):
self.client.login(username='username', password='password')
def test_company_index(self):
""" Test the company index """
response = self.client.get(reverse('company-index'))
self.assertEqual(response.status_code, 200)
def test_supplier_part_delete(self):
""" Test the SupplierPartDelete view """