Browse Source

data coordinator steps

cucumber-rails
JG 3 years ago
parent
commit
79dc646337
  1. 14
      features/step_definitions/data_coordinator_steps.rb

14
features/step_definitions/data_coordinator_steps.rb

@ -0,0 +1,14 @@
Given('there are multiple users in the same organization') do
@users = create_list :user, 5, organisation: @user.organisation
end
Given('I visit the users page') do
click_link("Users")
end
Then('I see information about those users') do
@users.each do |user|
expect(page.body).to have_content user.name
expect(page.body).to have_content user.email
end
end
Loading…
Cancel
Save