fixing tests
This commit is contained in:
parent
4a16091b04
commit
45b44ce17b
|
@ -250,6 +250,11 @@ class MakeAvailable(ActionDef):
|
|||
SCHEMA = schemas.MakeAvailable
|
||||
|
||||
|
||||
class TradeDef(ActionDef):
|
||||
VIEW = None
|
||||
SCHEMA = schemas.Trade
|
||||
|
||||
|
||||
class CancelTradeDef(ActionDef):
|
||||
VIEW = None
|
||||
SCHEMA = schemas.CancelTrade
|
||||
|
|
|
@ -747,7 +747,7 @@ def test_deallocate_bad_dates(user: UserClient):
|
|||
(models.Rent, states.Trading.Renting),
|
||||
(models.DisposeProduct, states.Trading.ProductDisposed)
|
||||
]))
|
||||
def test_trade2(action_model_state: Tuple[Type[models.Action], states.Trading], user: UserClient):
|
||||
def test_trade(action_model_state: Tuple[Type[models.Action], states.Trading], user: UserClient):
|
||||
"""Tests POSTing all Trade actions."""
|
||||
# todo missing None states.Trading for after cancelling renting, for example
|
||||
# import pdb; pdb.set_trace()
|
||||
|
@ -769,20 +769,6 @@ def test_trade2(action_model_state: Tuple[Type[models.Action], states.Trading],
|
|||
assert device['trading'] == state.name
|
||||
|
||||
|
||||
@pytest.mark.mvp
|
||||
def test_trade(user: UserClient, user2: UserClient):
|
||||
"""Tests POST one simple Trade action with both users as system users."""
|
||||
# import pdb; pdb.set_trace()
|
||||
snapshot, _ = user.post(file('basic.snapshot'), res=models.Snapshot)
|
||||
action = {
|
||||
'type': 'Trade',
|
||||
'devices': [snapshot['device']['id']],
|
||||
'user_to': user2.user['email']
|
||||
}
|
||||
action, _ = user.post(action, res=models.Action)
|
||||
assert action['devices'][0]['id'] == snapshot['device']['id']
|
||||
|
||||
|
||||
@pytest.mark.mvp
|
||||
@pytest.mark.usefixtures(conftest.auth_app_context.__name__)
|
||||
def test_price_custom():
|
||||
|
|
Reference in New Issue