aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/test_cli_runner.py
diff options
context:
space:
mode:
authorEmma Foley <emma.l.foley@intel.com>2017-11-29 23:02:43 +0000
committerRoss Brattain <ross.b.brattain@intel.com>2018-01-11 20:50:41 +0000
commit11802c9ec469ab570dace176c18093bc655561a2 (patch)
tree983d57a7339b2ff7d85c1960c4ba98c18ce91435 /tests/functional/test_cli_runner.py
parent5702f5b5e0721d9af61e494691376f32652e0048 (diff)
Move tests: functional/
All tests in tests/functional have been moved to yardstick/tests/functional JIRA: YARDSTICK-837 Change-Id: I89276b36635de74dd7b8f70e961c71aa0d2c494e Signed-off-by: Emma Foley <emma.l.foley@intel.com>
Diffstat (limited to 'tests/functional/test_cli_runner.py')
-rwxr-xr-xtests/functional/test_cli_runner.py49
1 files changed, 0 insertions, 49 deletions
diff --git a/tests/functional/test_cli_runner.py b/tests/functional/test_cli_runner.py
deleted file mode 100755
index 620edc396..000000000
--- a/tests/functional/test_cli_runner.py
+++ /dev/null
@@ -1,49 +0,0 @@
-##############################################################################
-# Copyright (c) 2015 Huawei Technologies Co.,Ltd 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
-##############################################################################
-
-
-from __future__ import absolute_import
-import unittest
-
-from tests.functional import utils
-
-
-class RunnerTestCase(unittest.TestCase):
-
- def setUp(self):
- super(RunnerTestCase, self).setUp()
- self.yardstick = utils.Yardstick()
-
- def test_runner_list(self):
- res = self.yardstick("runner list")
-
- self.assertIn("Duration", res)
- self.assertIn("Arithmetic", res)
- self.assertIn("Iteration", res)
- self.assertIn("Sequence", res)
-
- def test_runner_show_Duration(self):
- res = self.yardstick("runner show Duration")
- duration = "duration - amount of time" in res
- self.assertTrue(duration)
-
- def test_runner_show_Arithmetic(self):
- res = self.yardstick("runner show Arithmetic")
- arithmetic = "Run a scenario arithmetically" in res
- self.assertTrue(arithmetic)
-
- def test_runner_show_Iteration(self):
- res = self.yardstick("runner show Iteration")
- iteration = "iterations - amount of times" in res
- self.assertTrue(iteration)
-
- def test_runner_show_Sequence(self):
- res = self.yardstick("runner show Sequence")
- sequence = "sequence - list of values which are executed" in res
- self.assertTrue(sequence)