We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd845a1 commit 2bac576Copy full SHA for 2bac576
spec/accounts_spec.rb
@@ -27,11 +27,14 @@
27
it "should create an account" do
28
name = Faker::Name.first_name
29
30
- account = hmac_client.accounts.create!(owner: user, name: name, signup_via: "deis")
+ 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")
35
36
expect(account.name).to eq(name)
37
expect(account.support_plan).to eq("standard")
- expect(account.signup_via).to eq("deis")
38
39
users = account.users.all
40
expect(users.size).to eq(1)
0 commit comments