summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2013-10-12move() can now take a list of movements to makeBryan Bishop
2013-09-22additional words for the keyboard testingBryan Bishop
2013-09-22test keyboard typing functionsBryan Bishop
This tests 18 different names being typed on the keyboard. These are supposed to be typed using the shortest possible sequence of button presses to get to the right letter selection.
2013-09-22basic keyboard writing testBryan Bishop
2013-09-22a test for moving in circlesBryan Bishop
Well, it's more like a square.
2013-09-22remove vba.shutdown() from another testBryan Bishop
2013-09-22reduce some duplicated code inside some testsBryan Bishop
Those movement checks are now collapsed into a single function that each test can individually call.
2013-09-22remove unnecessary emulator shutdownBryan Bishop
2013-09-22change the walk test after Elm's LabBryan Bishop
The walk test is useful to see if the player is able to move, but it shouldn't walk down and out of the building because the test is comparing against the MapNumber for Elm's Lab and not New Bark Town.
2013-09-22test that the Elm's Lab sequence worksBryan Bishop
2013-09-22test that the current map is correctBryan Bishop
2013-09-22add more defaults to setup_wram for testingBryan Bishop
This is sorta absurd, it should just load these values by parsing wram.asm on its own.
2013-09-22test the walk_into_new_bark_town vba methodBryan Bishop
2013-09-22test autoplayer handle_momBryan Bishop
2013-09-22remove old jython comments from the vba testsBryan Bishop
2013-09-22combine some tests togetherBryan Bishop
2013-09-22make the vba tests passBryan Bishop
2013-09-22use the state property during test bootstrappingBryan Bishop
2013-09-22fix the autoplayer bootstrapper for test_vba.pyBryan Bishop
2013-09-21move tests into test_vba.pyBryan Bishop
They didn't belong in pokemontools/vba/vba.py in the first place.
2013-09-12move find_labels_without_addresses into labels.pyBryan Bishop
2013-09-12remove an unused import from integration testsBryan Bishop
2013-09-08fix some imports in test_vba.pyBryan Bishop
2013-09-08vba_tests.py -> test_vba.pyBryan Bishop
This matches the other filenames in the tests/ directory.
2013-09-08crude tests for the vba automation softwareBryan Bishop
2013-09-01move index and grouper into helpers.pyBryan Bishop
2013-09-01make the TestPostParsing test case work againBryan Bishop
It needs to be a subclass of unittest.TestCase in order to get any of the testing methods. Otherwise all of the tests fail when nosetests finds those tests.
2013-08-04fix the test for calculate_bankBryan Bishop
There shouldn't be any exception thrown by calculate_bank since it was changed some time ago.
2013-08-04make isolate_incbins not take a global asmBryan Bishop
Why on earth was this using globals?
2013-08-04fix setUpClass for a unittest.TestCaseBryan Bishop
2013-08-04fix a test that used LabelBryan Bishop
Label had changed since the test was first written.
2013-08-04improve the test for incbin splittingBryan Bishop
2013-08-04separate more integration testsBryan Bishop
2013-08-04move TestEncodedText into tests/integration/Bryan Bishop
2013-08-04move a TestAsmList test into tests/integrations/Bryan Bishop
2013-08-04clean up the formatting in test_write_all_labelsBryan Bishop
2013-08-04remove a file that was created during a testBryan Bishop
2013-08-04separate some of the integration testsBryan Bishop
These tests require extra assets to complete. At the moment they shouldn't work because the data isn't available.
2013-08-04remove unused imports from tests.pyBryan Bishop
2013-08-04remove a useless testBryan Bishop
2013-08-04remove test helpers and meta testingBryan Bishop
The meta testing code was really redundant. There are libraries and tools already made for coverage tests. Also, it was causing a problem with the unit testing because importing the unittest module inside of another included module is apparently broken. Why would that be broken?
2013-08-04remove unused modules from test helpersBryan Bishop
2013-08-04split meta-testing into separate filesBryan Bishop
2013-08-04remove python2.6 check in tests.pyBryan Bishop
There's no way that this library supports python2.6, and even if it does, it's not a target or something worth maintaining.
2013-08-03fix import lines in tests/Bryan Bishop
2013-08-03make a basic python moduleBryan Bishop