forked from flask-restful/flask-restful
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix accept header in test (fixes flask-restful#392)
- Loading branch information
Josh Friend
committed
Feb 25, 2015
1 parent
231da4b
commit a915d9d
Showing
3 changed files
with
27 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/env python | ||
|
||
import functools | ||
|
||
from nose import SkipTest | ||
|
||
|
||
def expected_failure(test): | ||
@functools.wraps(test) | ||
def inner(*args, **kwargs): | ||
try: | ||
test(*args, **kwargs) | ||
except Exception: | ||
raise SkipTest | ||
else: | ||
raise AssertionError('Failure expected') | ||
return inner |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters