static_pages_controller_test.rb 257 B

1234567891011121314
  1. require 'test_helper'
  2. class StaticPagesControllerTest < ActionDispatch::IntegrationTest
  3. test "should get home" do
  4. get home_url
  5. assert_response :success
  6. end
  7. test "should get about" do
  8. get about_url
  9. assert_response :success
  10. end
  11. end