osem-fcy/spec/features/resource_spec.rb
Henne Vogelsang df0b9ab356
Replace flash helper with "within"
So we can't forget to find "#flash" on the page ever again...
2025-08-06 13:11:48 +02:00

46 lines
1.4 KiB
Ruby

# frozen_string_literal: true
require 'spec_helper'
feature Resource do
let!(:conference) { create(:conference) }
let!(:admin) { create(:admin) }
let!(:resource) { create(:resource, conference: conference) }
context 'as an admin' do
before(:each) do
sign_in admin
end
scenario 'create a new resource' do
visit admin_conference_resources_path(conference.short_title)
click_link 'Add Resource'
fill_in 'resource_name', with: 'shirts'
fill_in 'resource_description', with: 'what you love to wear!'
fill_in 'resource_quantity', with: 10
click_button 'Create Resource'
expect(Resource.count).to eq(2)
within('#flash') { expect(page).to have_text('Resource successfully created.') }
end
scenario 'edit an existing resource' do
visit admin_conference_resources_path(conference.short_title)
click_link('Edit')
fill_in 'resource_name', with: 'changed_name'
click_button 'Update Resource'
within('#flash') { expect(page).to have_text('Resource successfully updated.') }
expect(resource.reload.name).to eq('changed_name')
end
scenario 'destroy a resource' do
visit admin_conference_resources_path(conference.short_title)
click_link('Delete', href: admin_conference_resource_path(conference.short_title, resource.id))
within('#flash') { expect(page).to have_text('Resource successfully destroyed.') }
end
end
end