aboutsummaryrefslogtreecommitdiffstats
path: root/guides/code/getting_started/test/functional/welcome_controller_test.rb
blob: e4d5abae11b7108705b30c5f838c88a84788a4a9 (plain) (blame)
1
2
3
4
5
6
7
8
require 'test_helper'

class WelcomeControllerTest < ActionController::TestCase
  test "should get index" do
    get :index
    assert_response :success
  end
end