move template to common.go
diff --git a/acceptance/openstack/orchestration/v1/common.go b/acceptance/openstack/orchestration/v1/common.go
index 1bcca06..b010385 100644
--- a/acceptance/openstack/orchestration/v1/common.go
+++ b/acceptance/openstack/orchestration/v1/common.go
@@ -11,6 +11,32 @@
 	th "github.com/rackspace/gophercloud/testhelper"
 )
 
+const template = `
+{
+		"heat_template_version": "2013-05-23",
+		"description": "Simple template to test heat commands",
+		"parameters": {
+				"flavor": {
+						"default": "m1.tiny",
+						"type": "string"
+				}
+		},
+		"resources": {
+				"hello_world": {
+						"type":"OS::Nova::Server",
+						"properties": {
+								"key_name": "heat_key",
+								"flavor": {
+										"get_param": "flavor"
+								},
+								"image": "ad091b52-742f-469e-8f3c-fd81cadf0743",
+								"user_data": "#!/bin/bash -xv\necho \"hello world\" > /root/hello-world.txt\n"
+						}
+				}
+		}
+}
+`
+
 func newClient(t *testing.T) *gophercloud.ServiceClient {
 	ao, err := openstack.AuthOptionsFromEnv()
 	th.AssertNoErr(t, err)
diff --git a/acceptance/openstack/orchestration/v1/stacks_test.go b/acceptance/openstack/orchestration/v1/stacks_test.go
index bfebd2d..cbbe871 100644
--- a/acceptance/openstack/orchestration/v1/stacks_test.go
+++ b/acceptance/openstack/orchestration/v1/stacks_test.go
@@ -11,32 +11,6 @@
 	th "github.com/rackspace/gophercloud/testhelper"
 )
 
-const template = `
-{
-		"heat_template_version": "2013-05-23",
-		"description": "Simple template to test heat commands",
-		"parameters": {
-				"flavor": {
-						"default": "m1.tiny",
-						"type": "string"
-				}
-		},
-		"resources": {
-				"hello_world": {
-						"type":"OS::Nova::Server",
-						"properties": {
-								"key_name": "heat_key",
-								"flavor": {
-										"get_param": "flavor"
-								},
-								"image": "ad091b52-742f-469e-8f3c-fd81cadf0743",
-								"user_data": "#!/bin/bash -xv\necho \"hello world\" > /root/hello-world.txt\n"
-						}
-				}
-		}
-}
-`
-
 func TestStacks(t *testing.T) {
 	// Create a provider client for making the HTTP requests.
 	// See common.go in this directory for more information.