Conditions | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | # pylint: disable=unused-variable,misplaced-comparison-constant,expression-not-assigned |
||
17 | def describe_post(): |
||
18 | |||
19 | def new_fonts_are_created_using_github(client): |
||
20 | status, data = load(client.post("/api/fonts/")) |
||
21 | |||
22 | expect(status) == 403 |
||
23 | expect(data) == dict( |
||
24 | message="https://raw.githubusercontent.com/jacebrowning/memegen/master/CONTRIBUTING.md" |
||
25 | ) |
||
26 |