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

15 lines
231 B
Ruby
Raw Normal View History

2016-01-12 18:43:00 -06:00
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