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

12 lines
201 B
Ruby
Raw Normal View History

2016-01-12 18:43:00 -06:00
require 'rails_helper'
RSpec.describe "recipes/show", type: :view do
before(:each) do
@recipe = assign(:recipe, Recipe.create!())
end
it "renders attributes in <p>" do
render
end
end