proovider/google: Adding test for google_pubsub_subscription path
This commit is contained in:
parent
07eddc9955
commit
8d00895d96
|
@ -16,11 +16,12 @@ func TestAccPubsubSubscriptionCreate(t *testing.T) {
|
|||
Providers: testAccProviders,
|
||||
CheckDestroy: testAccCheckPubsubSubscriptionDestroy,
|
||||
Steps: []resource.TestStep{
|
||||
resource.TestStep{
|
||||
{
|
||||
Config: testAccPubsubSubscription,
|
||||
Check: resource.ComposeTestCheckFunc(
|
||||
testAccPubsubSubscriptionExists(
|
||||
"google_pubsub_subscription.foobar_sub"),
|
||||
resource.TestCheckResourceAttrSet("google_pubsub_subscription.foobar_sub", "path"),
|
||||
),
|
||||
},
|
||||
},
|
||||
|
|
|
@ -68,4 +68,4 @@ The optional `push_config` block supports:
|
|||
|
||||
## Attributes Reference
|
||||
|
||||
Only the arguments listed above are exposed as attributes.
|
||||
* `path` - Path of the subscription in the format `projects/{project}/subscriptions/{sub}`
|
||||
|
|
Loading…
Reference in New Issue