36 lines
1 KiB
Ruby
36 lines
1 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe :event_participation do
|
|
|
|
subject { page }
|
|
|
|
let(:person) { people(:leader) }
|
|
let(:event) { Fabricate(:event, application_opening_at: 5.days.ago, groups: [group]) }
|
|
let(:group) { person.roles.first.group }
|
|
|
|
before do
|
|
sign_in(person)
|
|
end
|
|
|
|
it 'creates an event participation' do
|
|
visit group_event_path(group_id: group, id: event)
|
|
|
|
click_link('Anmelden')
|
|
|
|
find_all('.btn-toolbar.bottom .btn-group button[type="submit"]').first.click # "Weiter"
|
|
|
|
fill_in('Bemerkungen', with: 'Wichtige Bemerkungen über meine Teilnahme')
|
|
|
|
expect do
|
|
click_button('Anmelden')
|
|
end.to change { Event::Participation.count }.by(1)
|
|
|
|
is_expected.to have_text("Teilnahme von #{person.full_name} in #{event.name} wurde erfolgreich erstellt. Bitte überprüfe die Kontaktdaten und passe diese gegebenenfalls an.")
|
|
is_expected.to have_text('Wichtige Bemerkungen über meine Teilnahme')
|
|
|
|
participation = Event::Participation.find_by(event: event, person: person)
|
|
|
|
expect(participation).to be_present
|
|
end
|
|
|
|
end
|