network_inventory/backend/customers/tests/test_customer.py

11 lines
267 B
Python

import pytest
from mixer.backend.django import mixer
pytestmark = pytest.mark.django_db
def test_customer_reverse_url():
customer = mixer.blend('customers.Customer')
assert (customer.get_absolute_url()
== "/customer/" + str(customer.id) + "/")