9 lines
175 B
Ruby
9 lines
175 B
Ruby
|
|
require "test_helper"
|
||
|
|
|
||
|
|
class PublicControllerTest < ActionDispatch::IntegrationTest
|
||
|
|
test "should get root" do
|
||
|
|
get public_root_url
|
||
|
|
assert_response :success
|
||
|
|
end
|
||
|
|
end
|