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.
23 lines
589 B
23 lines
589 B
require 'rails_helper'
|
|
|
|
module Legacy
|
|
RSpec.describe 'legacy/districts/new', type: :view do
|
|
before(:each) do
|
|
assign(:district, Legacy::District.new(
|
|
name: 'MyString',
|
|
state_id: 1
|
|
))
|
|
end
|
|
|
|
it 'renders new district form' do
|
|
render
|
|
|
|
assert_select 'form[action=?][method=?]', legacy_districts_path, 'post' do
|
|
assert_select 'input#district_name[name=?]', 'district[name]'
|
|
|
|
assert_select 'input#district_state_id[name=?]', 'district[state_id]'
|
|
end
|
|
end
|
|
end
|
|
end
|