Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
hubboss / tests / test_boss.py
Size: Mime:
'''
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))