evodata/test/controllers/static_pages_controller_test.rb

9 lines
186 B
Ruby

require "test_helper"
class StaticPagesControllerTest < ActionDispatch::IntegrationTest
test "should get home" do
get static_pages_home_url
assert_response :success
end
end