aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/tests/services/test_repos.py
diff options
context:
space:
mode:
authorDavid Medina <davidmedina9@gmail.com>2012-03-01 13:12:00 +0100
committerDavid Medina <davidmedina9@gmail.com>2012-03-01 13:12:00 +0100
commit397238b404a66ba25aec1e4d7902e16104eddefc (patch)
tree7453341e1e3257282cf5d87285b451b6fc13ec23 /pygithub3/tests/services/test_repos.py
parentServices.repos.Repo doc (diff)
downloadpython-github3-397238b404a66ba25aec1e4d7902e16104eddefc.tar.xz
python-github3-397238b404a66ba25aec1e4d7902e16104eddefc.zip
Restructure modules and packages in a clean way
The docs has increased lines of code, so I split it
Diffstat (limited to 'pygithub3/tests/services/test_repos.py')
-rw-r--r--pygithub3/tests/services/test_repos.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pygithub3/tests/services/test_repos.py b/pygithub3/tests/services/test_repos.py
index e11bef7..865c5df 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, Collaborators, Commits, Downloads,
+from pygithub3.services.repos import (Repos, Collaborators, Commits, Downloads,
Forks, Keys, Watchers)
from pygithub3.resources.base import json
from pygithub3.tests.utils.base import (mock_response, mock_response_result,
@@ -21,7 +21,7 @@ json.loads = Mock(side_effect=mock_json)
class TestRepoService(TestCase):
def setUp(self):
- self.rs = Repo()
+ self.rs = Repos()
self.rs.set_user('octocat')
self.rs.set_repo('octocat_repo')