Files
sx-fc/spec/views/stock_checks/show.html.erb_spec.rb
2017-08-24 18:04:42 +06:30

12 lines
220 B
Ruby

require 'rails_helper'
RSpec.describe "stock_checks/show", type: :view do
before(:each) do
@stock_check = assign(:stock_check, StockCheck.create!())
end
it "renders attributes in <p>" do
render
end
end