Fixed unit tests

This commit is contained in:
Oliver Walters 2019-09-06 12:48:31 +10:00
parent 9bde8bde66
commit dac1264878
3 changed files with 6 additions and 6 deletions

View File

@ -67,8 +67,8 @@ class CategoryTest(TestCase):
def test_path_string(self):
""" Test that the category path string works correctly """
self.assertEqual(str(self.resistors), 'Electronics/Resistors')
self.assertEqual(str(self.transceivers), 'Electronics/IC/Transceivers')
self.assertEqual(str(self.resistors), 'Electronics/Resistors - Resistors')
self.assertEqual(str(self.transceivers.pathstring), 'Electronics/IC/Transceivers')
def test_url(self):
""" Test that the PartCategory URL works """
@ -111,11 +111,11 @@ class CategoryTest(TestCase):
def test_default_locations(self):
""" Test traversal for default locations """
self.assertEqual(str(self.fasteners.default_location), 'Office/Drawer_1')
self.assertEqual(str(self.fasteners.default_location), 'Office/Drawer_1 - In my desk')
# Test that parts in this location return the same default location, too
for p in self.fasteners.children.all():
self.assert_equal(p.get_default_location(), 'Office/Drawer_1')
self.assert_equal(p.get_default_location().pathstring, 'Office/Drawer_1')
# Any part under electronics should default to 'Home'
R1 = Part.objects.get(name='R_2K2_0805')

View File

@ -44,7 +44,7 @@ class PartTest(TestCase):
self.assertEqual(self.R1.get_absolute_url(), '/part/3/')
def test_category(self):
self.assertEqual(str(self.C1.category), 'Electronics/Capacitors')
self.assertEqual(str(self.C1.category), 'Electronics/Capacitors - Capacitors')
orphan = Part.objects.get(name='Orphan')
self.assertIsNone(orphan.category)

View File

@ -167,7 +167,7 @@ class PartQRTest(PartViewTestCase):
data = str(response.content)
self.assertIn('Part QR Code', data)
self.assertIn('<img src=', data)
self.assertIn('<img class=', data)
def test_invalid_part(self):
response = self.client.get(reverse('part-qr', args=(9999,)), HTTP_X_REQUESTED_WITH='XMLHttpRequest')