diff options
author | 2012-02-29 01:22:16 +0100 | |
---|---|---|
committer | 2012-02-29 01:22:16 +0100 | |
commit | d5a26bd35820b1cb3de991fd45460345b9d3f492 (patch) | |
tree | db935b1c504b86b4208946f9e15c3d89b04611db /pygithub3/tests/services/test_repos.py | |
parent | Repos.watchers service done (diff) | |
download | python-github3-d5a26bd35820b1cb3de991fd45460345b9d3f492.tar.xz python-github3-d5a26bd35820b1cb3de991fd45460345b9d3f492.zip |
Init documentation
+core
+services.user
~services.repos
Diffstat (limited to '')
-rw-r--r-- | pygithub3/tests/services/test_repos.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pygithub3/tests/services/test_repos.py b/pygithub3/tests/services/test_repos.py index 6f4ed71..e11bef7 100644 --- a/pygithub3/tests/services/test_repos.py +++ b/pygithub3/tests/services/test_repos.py @@ -6,7 +6,7 @@ from unittest import TestCase import requests from mock import patch, Mock -from pygithub3.services.repos import (Repo, Collaborator, Commits, Downloads, +from pygithub3.services.repos import (Repo, Collaborators, Commits, Downloads, Forks, Keys, Watchers) from pygithub3.resources.base import json from pygithub3.tests.utils.base import (mock_response, mock_response_result, @@ -146,7 +146,7 @@ class TestRepoService(TestCase): class TestCollaboratorsService(TestCase): def setUp(self): - self.cs = Collaborator() + self.cs = Collaborators() self.cs.set_user('octocat') self.cs.set_repo('oc_repo') |