Repository URL to install this package:
''' Tests for main 'boss' module ''' import unittest class TestBoss(unittest.TestCase): def test_version(self): import boss assert type(getattr(boss, 'VERSION', None)) is str def test_main(self): import boss assert callable(getattr(boss, 'main', None))