Generate Units::Defaults controller

bin/rails g controller Units/Defaults index
This commit is contained in:
2024-05-04 01:53:57 +02:00
parent b4212298df
commit 965cb76f1d
5 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
require "test_helper"
class Units::DefaultsControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get units_defaults_index_url
assert_response :success
end
end