summaryrefslogtreecommitdiffstats
path: root/tests/unit/util/dev_test.py
diff options
context:
space:
mode:
authorYujun Zhang <zhang.yujunz@zte.com.cn>2017-02-22 03:08:21 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-02-22 03:08:21 +0000
commita72b8daa8aa00be9632d56ac0770002b0caad360 (patch)
tree3a0f075f1ae2b102582c1ece96a0bd293dbb3b8b /tests/unit/util/dev_test.py
parenta95ed75274a7f98e8988bfbf521c29c9da021fa2 (diff)
parentb19344b16a3000180cac33e1239d62c7c6c3e5ea (diff)
Merge "Refactoring qtip.base.error"
Diffstat (limited to 'tests/unit/util/dev_test.py')
-rw-r--r--tests/unit/util/dev_test.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/unit/util/dev_test.py b/tests/unit/util/dev_test.py
new file mode 100644
index 00000000..021b1004
--- /dev/null
+++ b/tests/unit/util/dev_test.py
@@ -0,0 +1,32 @@
+###############################################################
+# Copyright (c) 2017 ZTE Corporation
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+
+import pytest
+
+from qtip.base.error import ToBeDoneError
+from qtip.util.dev import create_to_be_done
+
+
+def test_create_to_be_done(faker):
+ method = faker.pystr()
+ module = faker.pystr()
+
+ tbd = create_to_be_done(method)
+ assert callable(tbd)
+ with pytest.raises(ToBeDoneError) as excinfo:
+ tbd()
+ assert excinfo.value.method == method
+ assert excinfo.value.module == 'qtip'
+
+ tbd = create_to_be_done(method, module)
+ assert callable(tbd)
+ with pytest.raises(ToBeDoneError) as excinfo:
+ tbd()
+ assert excinfo.value.method == method
+ assert excinfo.value.module == module