mirror of
https://github.com/openSUSE/osem.git
synced 2026-01-01 18:48:11 -05:00
27 lines
994 B
Ruby
27 lines
994 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe Admin::CfpsController do
|
|
let!(:today) { Date.today }
|
|
let!(:conference) { create(:conference, start_date: today + 20.days, end_date: today + 30.days) }
|
|
let!(:organizer) { create(:organizer, resource: conference) }
|
|
let(:cfp) { create(:cfp, program: conference.program) }
|
|
|
|
before { sign_in(organizer) }
|
|
|
|
describe 'POST #create' do
|
|
it 'successes' do
|
|
post :create, params: { conference_id: conference.short_title, cfp: { cfp_type: 'events', start_date: today, end_date: today + 6.days, description: 'We call for papers, or tabak, or you know what!' } }
|
|
expect(flash[:notice]).to match('Call for papers successfully created.')
|
|
end
|
|
end
|
|
|
|
describe 'POST #update' do
|
|
it 'successes' do
|
|
patch :update, params: { conference_id: conference.short_title, id: cfp.id, cfp: { end_date: today + 10.days } }
|
|
expect(flash[:notice]).to match('Call for papers successfully updated.')
|
|
end
|
|
end
|
|
end
|