@@ -58,7 +58,7 @@ public function shouldAuthenticateUsingUrlToken()
5858 /**
5959 * @test
6060 */
61- public function shouldClearHeadersLaizly ()
61+ public function shouldClearHeadersLazy ()
6262 {
6363 $ client = new Client ();
6464 $ client ->clearHeaders ();
@@ -102,14 +102,33 @@ public function getApiClassesProvider()
102102 {
103103 return array (
104104 array ('user ' , 'Github\Api\User ' ),
105+ array ('users ' , 'Github\Api\User ' ),
106+
107+ array ('me ' , 'Github\Api\CurrentUser ' ),
105108 array ('current_user ' , 'Github\Api\CurrentUser ' ),
109+
110+ array ('git ' , 'Github\Api\GitData ' ),
106111 array ('git_data ' , 'Github\Api\GitData ' ),
112+
113+ array ('gist ' , 'Github\Api\Gists ' ),
107114 array ('gists ' , 'Github\Api\Gists ' ),
115+
108116 array ('issue ' , 'Github\Api\Issue ' ),
117+ array ('issues ' , 'Github\Api\Issue ' ),
118+
109119 array ('markdown ' , 'Github\Api\Markdown ' ),
120+
110121 array ('organization ' , 'Github\Api\Organization ' ),
122+ array ('organizations ' , 'Github\Api\Organization ' ),
123+
111124 array ('repo ' , 'Github\Api\Repo ' ),
125+ array ('repos ' , 'Github\Api\Repo ' ),
126+ array ('repository ' , 'Github\Api\Repo ' ),
127+ array ('repositories ' , 'Github\Api\Repo ' ),
128+
129+ array ('pr ' , 'Github\Api\PullRequest ' ),
112130 array ('pull_request ' , 'Github\Api\PullRequest ' ),
131+ array ('pull_requests ' , 'Github\Api\PullRequest ' ),
113132 );
114133 }
115134}
0 commit comments