1
0
Fork 0
wuttjamaican/tests/commands/test_setup.py
Lance Edgar 005f43d14e Add basic command line framework
`wutta setup` is the only real sub/command yet, and it does nothing
2023-11-19 14:22:25 -06:00

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()