Assert that we know all attributes

To be removed before release, since this would break the application if
github.com adds a new attribute
This commit is contained in:
Vincent Jacques
2012-05-12 13:20:32 +02:00
parent 5a943ad0b2
commit dc1a8f8c9d
37 changed files with 149 additions and 37 deletions
+4 -1
View File
@@ -52,7 +52,10 @@ class GitObject( object ):
self.__completed = True
def __useAttributes( self, attributes ):
#@todo No need to check if attribute is in attributes when attribute is mandatory
# @todo Remove this debug weakness: we shall assume that github will add new attributes
for attribute in attributes:
assert attribute in [ "sha", "type", "url", ]
# @todo No need to check if attribute is in attributes when attribute is mandatory
if "sha" in attributes and attributes[ "sha" ] is not None:
assert isinstance( attributes[ "sha" ], ( str, unicode ) )
self.__sha = attributes[ "sha" ]