Dynamic module loading; just drop in plugins now

This commit is contained in:
Chris Caron
2019-03-16 23:35:06 -04:00
parent 2d5fe7ac7a
commit 96064cff25
12 changed files with 797 additions and 711 deletions

View File

@ -1610,8 +1610,11 @@ def test_rest_plugins(mock_post, mock_get):
url, asset=asset, suppress_exceptions=False)
if obj is None:
# We're done (assuming this is what we were expecting)
assert instance is None
if instance is not None:
# We're done (assuming this is what we were expecting)
print("{} didn't instantiate itself "
"(we expected it to)".format(url))
assert False
continue
if instance is None: