parsley/spec/views/recipes/index.html.erb_spec.rb
2016-01-12 18:43:00 -06:00

15 lines
231 B
Ruby

require 'rails_helper'
RSpec.describe "recipes/index", type: :view do
before(:each) do
assign(:recipes, [
Recipe.create!(),
Recipe.create!()
])
end
it "renders a list of recipes" do
render
end
end