Sha256: ca41b760e77a3c78decbbed3152c1ec9229a659e0373880438b1fb57d8e626d7

Contents?: true

Size: 524 Bytes

Versions: 2

Compression:

Stored size: 524 Bytes

Contents

Given /^I (?:am logged|should be able to log) in with "([^\"]*)" and "([^\"]*)"$/ do |arg1, arg2|
  @account = Sorenson::Services::Account.login(arg1, arg2)
end

Given "I am logged in" do
  @account = Sorenson::Services::Account.login("integrum@integrumtech.com", "integrum")
end

And /^I get an account$/ do
  @account = Sorenson::Services::Account.get_account
end

When /^I change my password to "([^\"]*)"$/ do |arg1|
  @account.set_password(arg1, 'anything')
end

When /^I empty the trash$/ do
  @account.empty_trash
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
360_services-0.0.2 features/step_definitions/manage_accounts_steps.rb
360_services-0.0.1 features/step_definitions/manage_accounts_steps.rb