today_ai_weather/test/controllers/static_pages_controller_test.rb

20 lines
377 B
Ruby
Raw Normal View History

2024-12-29 17:22:48 +08:00
require "test_helper"
class StaticPagesControllerTest < ActionDispatch::IntegrationTest
test "should get home" do
get static_pages_home_url
assert_response :success
end
test "should get help" do
get static_pages_help_url
assert_response :success
end
test "Should get about" do
get static_pages_about_url
assert_response :success
end
end