Files
baffle-hub/test/controllers/registrations_controller_test.rb
2025-11-04 10:32:05 +11:00

14 lines
286 B
Ruby

require "test_helper"
class RegistrationsControllerTest < ActionDispatch::IntegrationTest
test "should get new" do
get registrations_new_url
assert_response :success
end
test "should get create" do
get registrations_create_url
assert_response :success
end
end