lutris/tests/test_snes9x.py
2013-05-28 14:17:41 +02:00

16 lines
403 B
Python

import logging
from unittest import TestCase
from lutris.runners.snes9x import snes9x
LOGGER = logging.getLogger(__name__)
class TestSnes9x(TestCase):
def test_set_option(self):
snes9x_runner = snes9x()
if snes9x_runner.is_installed():
snes9x_runner.set_option("full_screen_on_open", "1")
else:
LOGGER.info("snes9x not installed, can't run test")