python-openstackclient/openstackclient/tests/volume/v1
Tang Chen eb1574281b Test take_action() instead of run() in unit tests
Some of the unit tests test run(), but not take_action().

For example, in openstackclient/tests/volume/v1/test_volume.py, there is:

    def test_volume_set_size_smaller(self):
        ......

        result = self.cmd.run(parsed_args)

        self.assertEqual(0, result)
        ......

run() is defined in class Command in cliff. We don't need to test it in OSC
unit tests. On the contrary, we should test take_action(), which is
overwritten in each command classes in OSC.

Change-Id: If07e89953d40ac530f08cbb1ec05f5805171364b
Closes-bug: #1553468
2016-03-05 17:12:42 +08:00
..
__init__.py Remove copyright from empty files 2014-01-20 17:28:13 +04:00
fakes.py Fixed a bunch of spacing 2016-02-23 10:38:58 -06:00
test_qos_specs.py [Volume] Check return value is None in volume unit tests 2016-03-03 21:07:08 +08:00
test_volume.py Test take_action() instead of run() in unit tests 2016-03-05 17:12:42 +08:00