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

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

end