From 200ed62054847336235288c7785424be416bed06 Mon Sep 17 00:00:00 2001 From: Dean Troyer Date: Mon, 18 Nov 2013 17:10:39 -0600 Subject: Add server image create command Translation of 'nova image-create', with tests! Change-Id: I8a833aeff6f291e4774063ed235876eb2ba9c13c --- openstackclient/tests/image/v2/fakes.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'openstackclient/tests/image/v2') diff --git a/openstackclient/tests/image/v2/fakes.py b/openstackclient/tests/image/v2/fakes.py index df6b8072..96255cd4 100644 --- a/openstackclient/tests/image/v2/fakes.py +++ b/openstackclient/tests/image/v2/fakes.py @@ -21,10 +21,13 @@ from openstackclient.tests import utils image_id = 'im1' image_name = 'graven' +image_owner = 'baal' IMAGE = { 'id': image_id, - 'name': image_name + 'name': image_name, + 'is_public': False, + 'owner': image_owner, } -- cgit v1.2.1