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    
hub-client / tests / test_exceptions.py
Size: Mime:
from django.test import TestCase


class ExceptionTestCase(TestCase):
    def test_import_exceptions(self):
        try:
            from dockerhub.exceptions import BadRequest
        except AttributeError:
            self.fail("Error importing exception")