adding nic api tests

This commit is contained in:
Thomas Waldmann 2013-10-03 21:52:35 +02:00
parent 2dfc9707ca
commit 9428ed7943
2 changed files with 21 additions and 0 deletions

View File

View File

@ -0,0 +1,21 @@
"""
Tests for api package.
"""
import pytest
# TODO XXX experiencing ImportErrors all the time. somehow project package structure is borked.
# what is the usual, working, project structure for a testable django / pytest.django project?
pytest.skip("doesn't work due to ImportErrors....")
def test_myip(client):
response = client.get('/myip')
assert response.status_code == 200
assert response.content in ['127.0.0.1', '::1']
def test_nic_update(client):
response = client.get('/nic/update')
assert response.status_code == 401