mirror of
https://github.com/lilydjwg/nvchecker.git
synced 2025-03-10 06:14:02 +00:00
10 lines
302 B
Python
10 lines
302 B
Python
from tornado.ioloop import IOLoop
|
|
from tests.helper import ExternalVersionTestCase
|
|
|
|
|
|
class CMDTest(ExternalVersionTestCase):
|
|
def get_new_ioloop(self):
|
|
return IOLoop.instance()
|
|
|
|
def test_cmd(self):
|
|
self.assertEqual(self.sync_get_version("example", {"cmd": "echo Meow"}), "Meow")
|