diff options
author | 2011-11-13 23:43:35 +0100 | |
---|---|---|
committer | 2011-11-13 23:43:35 +0100 | |
commit | 6323be600d0c265e40df9f8950602e85ee94955b (patch) | |
tree | bc5a1b6945e45ea4908ce36258e87f169fa55954 /github3/tests/fixtures.py | |
parent | Added limit to querys that return several items (diff) | |
download | python-github3-6323be600d0c265e40df9f8950602e85ee94955b.tar.xz python-github3-6323be600d0c265e40df9f8950602e85ee94955b.zip |
Added handler base test
Diffstat (limited to 'github3/tests/fixtures.py')
-rw-r--r-- | github3/tests/fixtures.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/github3/tests/fixtures.py b/github3/tests/fixtures.py index aef4425..fdbc3fb 100644 --- a/github3/tests/fixtures.py +++ b/github3/tests/fixtures.py @@ -23,7 +23,10 @@ GET_USER = { } GET_LINK = '<https://api.github.com/gists/public?page=2>; rel="next", <https://api.github.com/gists/public?page=5>; rel="last"' - +GET_RESOURCES = [ + {'login': 'octocat'}, + {'login': 'octocat'} +] GET_FOLLOWERS = [ { "login": "octocat", |