コード例 #1
0
 def test_py_real_build_slides(self):
     args = (
         "pynes py pynes/examples/slides.py "
         "--path fixtures/nerdynights/scrolling "
         "--output pynes/examples/slides.nes --asm"
         ).split()
     main(args)
コード例 #2
0
ファイル: commandline_test.py プロジェクト: ickybodclay/pyNES
 def test_py_real_build_helloworld(self):
     args = (
         "pynes py pynes/examples/helloworld.py "
         "--path fixtures/nesasm/scrolling "
         "--output pynes/examples/helloworld.nes"
         ).split()
     main(args)
コード例 #3
0
 def test_py_real_build_movingsprite(self):
     args = (
         "pynes py pynes/examples/movingsprite.py "
         "--path fixtures/movingsprite "
         "--output pynes/examples/movingsprite.nes"
         ).split()
     main(args)
コード例 #4
0
ファイル: commandline_test.py プロジェクト: ickybodclay/pyNES
 def test_py_real_build_movingsprite(self):
     args = (
         "pynes py pynes/examples/movingsprite.py "
         "--path fixtures/movingsprite "
         "--output pynes/examples/movingsprite.nes"
         ).split()
     main(args)
コード例 #5
0
ファイル: commandline_test.py プロジェクト: ickybodclay/pyNES
 def test_py_real_build_mario(self):
     args = (
         "pynes py pynes/examples/mario.py "
         "--path fixtures/nesasm/scrolling "
         "--output pynes/examples/mario.nes"
         ).split()
     main(args)
コード例 #6
0
ファイル: commandline_test.py プロジェクト: joskid/pyNES
 def test_py_with_output(self, composer):
     main("pynes py pynes/examples/movingsprite.py --output output.nes".
          split())
     composer.assert_called_once_with('pynes/examples/movingsprite.py',
                                      output='output.nes',
                                      asm=False,
                                      path=None)
コード例 #7
0
 def test_py_real_build_helloworld(self):
     args = (
         "pynes py pynes/examples/helloworld.py "
         "--path fixtures/nerdynights/scrolling "
         "--output pynes/examples/helloworld.nes"
         ).split()
     main(args)
コード例 #8
0
ファイル: commandline_test.py プロジェクト: joskid/pyNES
 def test_py_with_path(self, composer):
     main(
         "pynes py pynes/examples/movingsprite.py --path fixtures/movingsprite"
         .split())
     composer.assert_called_once_with('pynes/examples/movingsprite.py',
                                      output=None,
                                      path='fixtures/movingsprite',
                                      asm=False)
コード例 #9
0
ファイル: commandline_test.py プロジェクト: joskid/pyNES
 def test_asm_with_path(self, compiler):
     main(
         "pynes asm fixtures/movingsprite/movingsprite.asm --path fixtures/movingsprite"
         .split())
     compiler.assert_called_once_with(
         'fixtures/movingsprite/movingsprite.asm',
         output=None,
         path='fixtures/movingsprite')
コード例 #10
0
ファイル: commandline_test.py プロジェクト: joskid/pyNES
 def test_asm_with_output(self, compiler):
     main(
         "pynes asm fixtures/movingsprite/movingsprite.asm --output /tmp/movingsprite.nes"
         .split())
     compiler.assert_called_once_with(
         'fixtures/movingsprite/movingsprite.asm',
         output='/tmp/movingsprite.nes',
         path=None)
コード例 #11
0
ファイル: commandline_test.py プロジェクト: ickybodclay/pyNES
 def test_py_with_path(self, composer):
     main("pynes py pynes/examples/movingsprite.py --path fixtures/movingsprite".split())
     composer.assert_called_once_with(
         'pynes/examples/movingsprite.py',
         output=None, path='fixtures/movingsprite', asm=False)
コード例 #12
0
ファイル: commandline_test.py プロジェクト: ickybodclay/pyNES
 def test_py_with_output(self, composer):
     main("pynes py pynes/examples/movingsprite.py --output output.nes".split())
     composer.assert_called_once_with(
         'pynes/examples/movingsprite.py',
         output='output.nes', asm=False, path=None)
コード例 #13
0
ファイル: commandline_test.py プロジェクト: ickybodclay/pyNES
 def test_py_with_asm(self, composer):
     main("pynes py pynes/examples/movingsprite.py --asm".split())
     composer.assert_called_once_with(
         'pynes/examples/movingsprite.py',
         output=None, asm=True, path=None)
コード例 #14
0
ファイル: commandline_test.py プロジェクト: ickybodclay/pyNES
 def test_asm_with_path(self, compiler):
     main("pynes asm fixtures/movingsprite/movingsprite.asm --path fixtures/movingsprite".split())
     compiler.assert_called_once_with(
         'fixtures/movingsprite/movingsprite.asm',
         output=None, path='fixtures/movingsprite')
コード例 #15
0
ファイル: commandline_test.py プロジェクト: ickybodclay/pyNES
 def test_asm_with_output(self, compiler):
     main("pynes asm fixtures/movingsprite/movingsprite.asm --output /tmp/movingsprite.nes".split())
     compiler.assert_called_once_with(
         'fixtures/movingsprite/movingsprite.asm',
         output='/tmp/movingsprite.nes', path=None)
コード例 #16
0
ファイル: commandline_test.py プロジェクト: joskid/pyNES
 def test_py_real_build_mario(self):
     args = ("pynes py pynes/examples/mario.py "
             "--path fixtures/nesasm/scrolling "
             "--output pynes/examples/mario.nes").split()
     main(args)
コード例 #17
0
ファイル: commandline_test.py プロジェクト: joskid/pyNES
 def test_py_with_asm(self, composer):
     main("pynes py pynes/examples/movingsprite.py --asm".split())
     composer.assert_called_once_with('pynes/examples/movingsprite.py',
                                      output=None,
                                      asm=True,
                                      path=None)
コード例 #18
0
 def test_py(self, composer):
     main("pynes py pynes/examples/movingsprite.py".split())
     self.assertTrue(composer.called)
コード例 #19
0
 def test_asm(self, compiler):
     main("pynes asm fixtures/movingsprite/movingsprite.asm".split())
     self.assertTrue(compiler.called)