17 lines
330 B
Python
17 lines
330 B
Python
|
import pytest
|
||
|
|
||
|
|
||
|
@pytest.mark.xfail(reason='Test not developed')
|
||
|
def test_create_inventory():
|
||
|
"""Tests creating an inventory with an user."""
|
||
|
|
||
|
|
||
|
@pytest.mark.xfail(reason='Test not developed')
|
||
|
def test_create_existing_inventory():
|
||
|
pass
|
||
|
|
||
|
|
||
|
@pytest.mark.xfail(reason='Test not developed')
|
||
|
def test_delete_inventory():
|
||
|
pass
|