blob: 170dca45ca39c8a295ca8fc38bc8c759737c3b83 [file] [log] [blame]
jrperritt3d966162016-06-06 14:08:54 -05001package testing
Ash Wilsonc8e68872014-09-16 10:36:56 -04002
3import (
Jon Perritt27249f42016-02-18 10:35:59 -06004 "github.com/gophercloud/gophercloud"
5 "github.com/gophercloud/gophercloud/testhelper"
Ash Wilsonc8e68872014-09-16 10:36:56 -04006)
7
8func createClient() *gophercloud.ServiceClient {
9 return &gophercloud.ServiceClient{
Ash Wilson92c380c2014-10-22 09:14:53 -040010 ProviderClient: &gophercloud.ProviderClient{TokenID: "abc123"},
11 Endpoint: testhelper.Endpoint(),
Ash Wilsonc8e68872014-09-16 10:36:56 -040012 }
13}