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,10 @@
require 'rails_helper'
RSpec.describe "InventoryDefinitions", type: :request do
describe "GET /inventory_definitions" do
it "works! (now write some real specs)" do
get inventory_definitions_path
expect(response).to have_http_status(200)
end
end
end

View File

@@ -0,0 +1,10 @@
require 'rails_helper'
RSpec.describe "StockCheckItems", type: :request do
describe "GET /stock_check_items" do
it "works! (now write some real specs)" do
get stock_check_items_path
expect(response).to have_http_status(200)
end
end
end

View File

@@ -0,0 +1,10 @@
require 'rails_helper'
RSpec.describe "StockChecks", type: :request do
describe "GET /stock_checks" do
it "works! (now write some real specs)" do
get stock_checks_path
expect(response).to have_http_status(200)
end
end
end

View File

@@ -0,0 +1,10 @@
require 'rails_helper'
RSpec.describe "StockJournals", type: :request do
describe "GET /stock_journals" do
it "works! (now write some real specs)" do
get stock_journals_path
expect(response).to have_http_status(200)
end
end
end