parsley/spec/views/recipes/edit.html.erb_spec.rb

15 lines
291 B
Ruby
Raw Normal View History

2016-01-12 18:43:00 -06:00
require 'rails_helper'
RSpec.describe "recipes/edit", type: :view do
before(:each) do
@recipe = assign(:recipe, Recipe.create!())
end
it "renders the edit recipe form" do
render
assert_select "form[action=?][method=?]", recipe_path(@recipe), "post" do
end
end
end