12345678910111213141516 |
- require 'test_helper'
- class StaticPagesControllerTest < ActionDispatch::IntegrationTest
- test "should get home" do
- get home_url
- assert_response :success
- assert_select "title", "Home | School Platform"
- end
- test "should get about" do
- get about_url
- assert_response :success
- assert_select "title", "About | School Platform"
- end
- end
|