network_inventory/inventory/tests/test_computer.py
2020-01-11 18:34:39 +01:00

11 lines
267 B
Python

import pytest
from mixer.backend.django import mixer
pytestmark = pytest.mark.django_db
def test_computer_reverse_url():
computer = mixer.blend('inventory.Computer')
assert (computer.get_absolute_url()
== "/computer/" + str(computer.id) + "/")