8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a18acfc commit 665a588Copy full SHA for 665a588
Makefile
@@ -9,7 +9,7 @@ clean:
9
git clean -Xdf
10
rm -rf build/ dist/
11
12
-travis: test-deps
+travis:
13
python $(TEST_RUNNER)
14
15
tests: travis
tests/test_users.py
@@ -240,7 +240,11 @@ def test_iter_subscriptions(self):
240
self.mock_assertions()
241
242
def test_iter_keys(self):
243
- expect(next(self.user.iter_keys(1))).isinstance(Key)
+ self.response('key', 200, _iter=True)
244
+ self.get(self.api + '/keys')
245
+
246
+ expect(next(self.user.iter_keys())).isinstance(github3.users.Key)
247
+ self.mock_assertions()
248
249
def test_update(self):
250
self.response('user', 200)
0 commit comments