mirror of
https://github.com/mnaberez/py65.git
synced 2025-04-04 22:29:36 +00:00
Add test that "mpu" command is not case sensitive
This commit is contained in:
parent
454bfa0f03
commit
624b828796
@ -318,6 +318,12 @@ class MonitorTests(unittest.TestCase):
|
||||
self.assertEqual('Reset with new MPU 65C02', lines[0])
|
||||
self.assertEqual('65C02', mon._mpu.name)
|
||||
|
||||
def test_mpu_select_is_not_case_sensitive(self):
|
||||
stdout = StringIO()
|
||||
mon = Monitor(stdout=stdout)
|
||||
mon.do_mpu('65c02')
|
||||
self.assertEqual('65C02', mon._mpu.name)
|
||||
|
||||
def test_help_mpu(self):
|
||||
stdout = StringIO()
|
||||
mon = Monitor(stdout=stdout)
|
||||
|
Loading…
x
Reference in New Issue
Block a user