12 lines
220 B
Ruby
Executable File
12 lines
220 B
Ruby
Executable File
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
|