static_pages_controller_test.rb 362 B

12345678910111213141516
  1. require 'test_helper'
  2. class StaticPagesControllerTest < ActionDispatch::IntegrationTest
  3. test "should get home" do
  4. get home_url
  5. assert_response :success
  6. assert_select "title", "Home | School Platform"
  7. end
  8. test "should get about" do
  9. get about_url
  10. assert_response :success
  11. assert_select "title", "About | School Platform"
  12. end
  13. end