17 lines
352 B
Python
17 lines
352 B
Python
|
# -*- 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()
|