def test_slot_3_with_all_vehicles_4(app, client): with open('tests/test_12.json') as f: test = json.load(f) execute_test(client, test['input'], test['expected_output'])
def test_slot_4_with_only_trucks(app, client): with open('tests/test_1.json') as f: test = json.load(f) execute_test(client, test['input'], test['expected_output'])
def test_slot_1_with_only_BikeAndScooter(app, client): with open('tests/test_4.json') as f: test = json.load(f) execute_test(client, test['input'], test['expected_output'])