diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-11-09 15:16:34 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-11-09 15:16:34 -0600 |
commit | cc403392982cfef8ccc9ed2b54ecda5934873a4f (patch) | |
tree | 22b145d3696012894cc00f47b57a4ed8a5b30e56 | |
parent | fd61c8f460d6e7453a79f945768f5952599ba724 (diff) |
import Battle for testing
-rw-r--r-- | tests/test_vba.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/test_vba.py b/tests/test_vba.py index 13f1c2c..9c12cc1 100644 --- a/tests/test_vba.py +++ b/tests/test_vba.py @@ -6,15 +6,19 @@ import unittest import pokemontools.vba.vba as vba +from pokemontools.vba.battle import ( + Battle, + BattleException, +) + try: import pokemontools.vba.vba_autoplayer as autoplayer except ImportError: import pokemontools.vba.autoplayer as autoplayer +autoplayer.vba = vba import pokemontools.vba.keyboard as keyboard -autoplayer.vba = vba - def setup_wram(): """ Loads up some default addresses. Should eventually be replaced with the |