home_controller_test.rb 174 B

12345678910
  1. require 'test_helper'
  2. class HomeControllerTest < ActionDispatch::IntegrationTest
  3. test "should get index" do
  4. get home_index_url
  5. assert_response :success
  6. end
  7. end