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

17 lines
352 B
Python
Raw Normal View History

# -*- coding: utf-8; -*-
from unittest import TestCase
from wuttjamaican.commands import setup, Command
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()