From 89fa9bc8752441405942b15ef82d7623201c4a79 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Thu, 17 May 2018 20:19:12 -0400 Subject: [PATCH] Add deprecation test --- testing/test_details.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/testing/test_details.py b/testing/test_details.py index 083f3f05..77fea42f 100644 --- a/testing/test_details.py +++ b/testing/test_details.py @@ -124,3 +124,8 @@ def test_result_deprecated(): r = _Result(10, None) with pytest.deprecated_call(): assert r.result == 10 + + +def test_implprefix_deprecated(): + with pytest.deprecated_call(): + PluginManager('blah', implprefix='blah')