You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
800 B
27 lines
800 B
require 'rails_helper'
|
|
|
|
RSpec.describe "recipient_lists/new", type: :view do
|
|
before(:each) do
|
|
@school = assign(:school, School.create!(name: 'School'))
|
|
|
|
@recipient_list = assign(:recipient_list, RecipientList.new(
|
|
:name => "MyString",
|
|
:description => "MyText",
|
|
:recipient_ids => "MyText",
|
|
:school_id => @school.id
|
|
))
|
|
end
|
|
|
|
it "renders new recipient_list form" do
|
|
render
|
|
|
|
assert_select "form[action=?][method=?]", school_recipient_lists_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
|