19 lines
365 B
Ruby
19 lines
365 B
Ruby
require "rails_helper"
|
|
|
|
describe "User invites" do
|
|
|
|
before do
|
|
login_as_manager
|
|
end
|
|
|
|
scenario "Send invitations" do
|
|
visit new_management_user_invite_path
|
|
|
|
fill_in "emails", with: "john@example.com, ana@example.com, isable@example.com"
|
|
click_button "Send invitations"
|
|
|
|
expect(page).to have_content "3 invitations have been sent."
|
|
end
|
|
|
|
end
|