Skip to content
This repository was archived by the owner on Nov 11, 2022. It is now read-only.

Commit 6b34200

Browse files
author
Jonathan Guyot Bourgeois
committedJun 13, 2022
create test for issue OpenClassrooms-Student-Center#4
1 parent f44eca1 commit 6b34200

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
 

‎src/tests/test_purchase_places.py

+14
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,17 @@ def test_purchase_places_with_more_points_than_available(
2222
data = response.data.decode()
2323
assert response.status_code == 200
2424
assert 'You do not have enough points' in response.data.decode()
25+
26+
27+
def test_purchase_places_over_book_limit(
28+
mocker, client, config, club, competition
29+
):
30+
mocker.patch('server.MAX_BOOK', 1)
31+
data = {
32+
'club': club['name'],
33+
'competition': competition['name'],
34+
'places': f"{2}",
35+
}
36+
response = client.post('purchase-places', data=data)
37+
assert response.status_code == 200
38+
assert 'You cannot purchase more than' in response.data.decode()

0 commit comments

Comments
 (0)