users_controller_test.rb 162 B

123456789
  1. require 'test_helper'
  2. class UsersControllerTest < ActionController::TestCase
  3. test "should get index" do
  4. get :index
  5. assert_response :success
  6. end
  7. end