summaryrefslogtreecommitdiffstats
path: root/storperf/tests/utilities/dictionary_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'storperf/tests/utilities/dictionary_test.py')
-rw-r--r--storperf/tests/utilities/dictionary_test.py42
1 files changed, 0 insertions, 42 deletions
diff --git a/storperf/tests/utilities/dictionary_test.py b/storperf/tests/utilities/dictionary_test.py
deleted file mode 100644
index 0819cef..0000000
--- a/storperf/tests/utilities/dictionary_test.py
+++ /dev/null
@@ -1,42 +0,0 @@
-##############################################################################
-# Copyright (c) 2016 EMC and others.
-#
-# 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 unittest
-from storperf.utilities import dictionary
-
-
-class DictionaryTest(unittest.TestCase):
-
- def setUp(self):
- self.dictionary = {}
- self.dictionary['key'] = 'value'
- pass
-
- def test_get_no_default(self):
- expected = None
- actual = dictionary.get_key_from_dict(self.dictionary, 'no-key')
- self.assertEqual(expected, actual)
-
- def test_get_with_default(self):
- expected = 'value 2'
- actual = dictionary.get_key_from_dict(
- self.dictionary, 'no-key', expected)
- self.assertEqual(expected, actual)
-
- def test_get_with_value(self):
- expected = 'value'
- actual = dictionary.get_key_from_dict(
- self.dictionary, 'key')
- self.assertEqual(expected, actual)
-
- def test_get_with_value_and_default(self):
- expected = 'value'
- actual = dictionary.get_key_from_dict(
- self.dictionary, 'key', 'value 2')
- self.assertEqual(expected, actual)