コード例 #1
0
ファイル: movingsprite_test.py プロジェクト: yxda/pyNES
 def __init__(self, testname):
     HexTestCase.__init__(self, testname)
     f = open('fixtures/movingsprite/movingsprite.asm')
     code = f.read()
     f.close()
     tokens = lexical(code)
     self.ast = syntax(tokens)
コード例 #2
0
ファイル: movingsprite_test.py プロジェクト: BmanisKing/Mine
 def __init__(self, testname):
     HexTestCase.__init__(self, testname)
     f = open('fixtures/movingsprite/movingsprite.asm')
     code = f.read()
     f.close()
     tokens = lexical(code)
     self.ast = syntax(tokens)
コード例 #3
0
ファイル: scrolling_test.py プロジェクト: acs022/pyNES
 def __init__(self, testname):
     HexTestCase.__init__(self, testname)
コード例 #4
0
ファイル: background_test.py プロジェクト: yxda/pyNES
 def __init__(self, testname):
     HexTestCase.__init__(self, testname)