First integration test

This commit is contained in:
Vincent Jacques
2012-02-12 16:33:27 +01:00
parent fd24a2d8f1
commit d9e79948b9
5 changed files with 67 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
from GithubObject import *
AuthenticatedUser = GithubObject(
"AuthenticatedUser",
BaseUrl( lambda obj: "/user" ),
SimpleScalarAttributes(
"login", "id", "avatar_url", "gravatar_id", "url", "name", "company",
"blog", "location", "email", "hireable", "bio", "public_repos",
"public_gists", "followers", "following", "html_url", "created_at",
"type", "total_private_repos", "owned_private_repos", "private_gists",
"disk_usage", "collaborators", "plan"
),
)