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    
Size: Mime:
"""Test code for bunch."""
# -*- coding: utf-8 -*-
import sys


def test():
    """Test bunch."""
    import bunch
    import doctest
    returned = doctest.testmod(bunch)
    return returned.failed


if __name__ == '__main__':
    sys.exit(test())