24 lines
505 B
Ruby
24 lines
505 B
Ruby
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
|