inventory setup

This commit is contained in:
Nweni
2017-08-24 18:04:42 +06:30
parent 688ce932cc
commit 81f430b5c6
97 changed files with 1699 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
require 'rails_helper'
RSpec.describe "stock_check_items/index", type: :view do
before(:each) do
assign(:stock_check_items, [
StockCheckItem.create!(),
StockCheckItem.create!()
])
end
it "renders a list of stock_check_items" do
render
end
end