1
0
Fork 0
wuttjamaican/tests/cmd/test_setup.py

21 lines
437 B
Python
Raw Normal View History

# -*- coding: utf-8; -*-
from unittest import TestCase
from wuttjamaican.cmd import Command, setup
# nb. do this just for coverage
from wuttjamaican.commands.setup import Setup as legacy
class TestSetup(TestCase):
def setUp(self):
self.command = Command()
self.subcommand = setup.Setup(self.command)
def test_run(self):
# TODO: this doesn't really test anything yet
self.subcommand._run()