Much base work started
This commit is contained in:
23
test/controllers/storage_locations_controller_test.rb
Normal file
23
test/controllers/storage_locations_controller_test.rb
Normal file
@@ -0,0 +1,23 @@
|
||||
require "test_helper"
|
||||
|
||||
class StorageLocationsControllerTest < ActionDispatch::IntegrationTest
|
||||
test "should get index" do
|
||||
get storage_locations_index_url
|
||||
assert_response :success
|
||||
end
|
||||
|
||||
test "should get show" do
|
||||
get storage_locations_show_url
|
||||
assert_response :success
|
||||
end
|
||||
|
||||
test "should get create" do
|
||||
get storage_locations_create_url
|
||||
assert_response :success
|
||||
end
|
||||
|
||||
test "should get destroy" do
|
||||
get storage_locations_destroy_url
|
||||
assert_response :success
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user