2023-11-19 14:22:25 -06:00
|
|
|
# -*- coding: utf-8; -*-
|
|
|
|
|
|
|
|
from unittest import TestCase
|
|
|
|
|
2023-11-22 11:13:39 -06:00
|
|
|
from wuttjamaican.cmd import Command, setup
|
|
|
|
|
|
|
|
|
|
|
|
# nb. do this just for coverage
|
|
|
|
from wuttjamaican.commands.setup import Setup as legacy
|
2023-11-19 14:22:25 -06:00
|
|
|
|
|
|
|
|
|
|
|
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()
|