Skip to content

Commit 2bac576

Browse files
committed
foyer only features will fail with internal client
1 parent bd845a1 commit 2bac576

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

spec/accounts_spec.rb

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,14 @@
2727
it "should create an account" do
2828
name = Faker::Name.first_name
2929

30-
account = hmac_client.accounts.create!(owner: user, name: name, signup_via: "deis")
30+
account = hmac_client.accounts.create!(owner: user, name: name)
31+
32+
# signup_via is foyer only
33+
# account = hmac_client.accounts.create!(owner: user, name: name, signup_via: "deis")
34+
# expect(account.signup_via).to eq("deis")
3135

3236
expect(account.name).to eq(name)
3337
expect(account.support_plan).to eq("standard")
34-
expect(account.signup_via).to eq("deis")
3538

3639
users = account.users.all
3740
expect(users.size).to eq(1)

0 commit comments

Comments
 (0)