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

12 lines
217 B
Ruby
Raw Normal View History

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