jrperritt | 3d96616 | 2016-06-06 14:08:54 -0500 | [diff] [blame] | 1 | package testing |
Ash Wilson | c8e6887 | 2014-09-16 10:36:56 -0400 | [diff] [blame] | 2 | |
| 3 | import ( |
Krzysztof Szukiełojć | 3f41d08 | 2017-05-07 14:43:06 +0200 | [diff] [blame] | 4 | "gerrit.mcp.mirantis.net/debian/gophercloud.git" |
Krzysztof Szukiełojć | 24a29ce | 2017-05-07 14:24:02 +0200 | [diff] [blame] | 5 | "gerrit.mcp.mirantis.net/debian/gophercloud.git/testhelper" |
Ash Wilson | c8e6887 | 2014-09-16 10:36:56 -0400 | [diff] [blame] | 6 | ) |
| 7 | |
| 8 | func createClient() *gophercloud.ServiceClient { |
| 9 | return &gophercloud.ServiceClient{ |
Ash Wilson | 92c380c | 2014-10-22 09:14:53 -0400 | [diff] [blame] | 10 | ProviderClient: &gophercloud.ProviderClient{TokenID: "abc123"}, |
| 11 | Endpoint: testhelper.Endpoint(), |
Ash Wilson | c8e6887 | 2014-09-16 10:36:56 -0400 | [diff] [blame] | 12 | } |
| 13 | } |