import unittest.mock as mock

This commit is contained in:
Bryan Bishop
2016-08-27 19:14:32 -05:00
parent 30ec94681f
commit 85ee624293
2 changed files with 10 additions and 2 deletions

View File

@@ -99,7 +99,11 @@ from pokemontools.crystal import (
import pokemontools.wram
import unittest
import mock
try:
import unittest.mock as mock
except ImportError:
import mock
class BasicTestCase(unittest.TestCase):
"this is where i cram all of my unit tests together"

View File

@@ -95,7 +95,11 @@ from pokemontools.crystal import (
)
import unittest
import mock
try:
import unittest.mock as mock
except ImportError:
import mock
class TestCram(unittest.TestCase):
"this is where i cram all of my unit tests together"