tests for verbose logging

This commit is contained in:
Alan Hamlett 2015-09-26 18:56:33 -07:00
parent f1e08d9e85
commit cde35d7ccd
2 changed files with 30 additions and 2 deletions

View file

@ -16,8 +16,8 @@ import sys
from .compat import u
try:
from collections import OrderedDict # pragma: nocover
except ImportError:
from .packages.ordereddict import OrderedDict # pragma: nocover
except ImportError: # pragma: nocover
from .packages.ordereddict import OrderedDict
try:
from .packages import simplejson as json # pragma: nocover
except (ImportError, SyntaxError): # pragma: nocover