mirror of
https://github.com/pret/pokemon-reverse-engineering-tools.git
synced 2026-08-28 05:04:13 -05:00
import unittest.mock as mock
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user