14 lines
301 B
Ruby
14 lines
301 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe "mappings/edit", :type => :view do
|
|
before(:each) do
|
|
@mapping = assign(:mapping, Mapping.create!())
|
|
end
|
|
|
|
it "renders the edit mapping form" do
|
|
render
|
|
|
|
assert_select "form[action=?][method=?]", mapping_path(@mapping), "post" do
|
|
end
|
|
end
|
|
end
|