inventory setup
This commit is contained in:
10
spec/requests/inventory_definitions_spec.rb
Normal file
10
spec/requests/inventory_definitions_spec.rb
Normal 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
|
||||
10
spec/requests/stock_check_items_spec.rb
Normal file
10
spec/requests/stock_check_items_spec.rb
Normal 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
|
||||
10
spec/requests/stock_checks_spec.rb
Normal file
10
spec/requests/stock_checks_spec.rb
Normal 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
|
||||
10
spec/requests/stock_journals_spec.rb
Normal file
10
spec/requests/stock_journals_spec.rb
Normal 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
|
||||
Reference in New Issue
Block a user