diff options
author | Vishvananda Ishaya <vishvananda@gmail.com> | 2013-04-02 08:51:39 -0700 |
---|---|---|
committer | Vishvananda Ishaya <vishvananda@gmail.com> | 2013-04-02 09:00:48 -0700 |
commit | bc2ee484f56fd105b4a66ce047fd1c422c68772a (patch) | |
tree | 29b1299ca57f43eeb85ac2b7eff4e62f494b207d /tests/v1_1/test_shell.py | |
parent | 593adf229aacabf66ce8aea4f147c131c9765374 (diff) | |
download | python-novaclient-bc2ee484f56fd105b4a66ce047fd1c422c68772a.tar.gz |
Remove actions command from servers.
It appears that this command was inherited from the original
cloudservers client code. It hasn't ever worked with nova. It
is confusing now because we have the instance actions command.
Fixes bug 1163033
Change-Id: Id0b36c01cdbd5034d0a7886b809269d838c36b45
Diffstat (limited to 'tests/v1_1/test_shell.py')
-rw-r--r-- | tests/v1_1/test_shell.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/v1_1/test_shell.py b/tests/v1_1/test_shell.py index 2febe7e0..455fe5ea 100644 --- a/tests/v1_1/test_shell.py +++ b/tests/v1_1/test_shell.py @@ -628,12 +628,6 @@ class ShellTest(utils.TestCase): self.run_command('diagnostics sample-server') self.assert_called('GET', '/servers/1234/diagnostics') - def test_actions(self): - self.run_command('actions 1234') - self.assert_called('GET', '/servers/1234/actions') - self.run_command('actions sample-server') - self.assert_called('GET', '/servers/1234/actions') - def test_set_meta_set(self): self.run_command('meta 1234 set key1=val1 key2=val2') self.assert_called('POST', '/servers/1234/metadata', |