sqm-dashboards/spec/views/legacy/recipient_lists/edit.html.erb_spec.rb
Nelson Jovel ad03606d66 Add benchmarks to survey and admin data items. Remove them from measures. Modify seeder
Calculate benchmarks for measures based on a weighted average of survey
and admin data items

Added architectural records
2021-12-28 14:10:34 +01:00

31 lines
1.1 KiB
Ruby

require 'rails_helper'
module Legacy
RSpec.describe 'legacy/recipient_lists/edit', type: :view do
before(:each) do
@school = assign(:school, School.create!(
name: 'School'
))
@recipient_list = assign(:recipient_list, RecipientList.create!(
name: 'MyString',
description: 'MyText',
recipient_ids: '1,2,3',
school_id: @school.id
))
end
it 'renders the edit recipient_list form' do
render
assert_select 'form[action=?][method=?]', legacy_school_legacy_recipient_list_path(@school, @recipient_list),
'post' do
assert_select 'input#recipient_list_name[name=?]', 'recipient_list[name]'
assert_select 'textarea#recipient_list_description[name=?]', 'recipient_list[description]'
assert_select 'input[name=?]', 'recipient_list[recipient_id_array][]'
end
end
end
end