Sha256: baf6489a9718c3ae974b8ba605ae2405a99ca3fd4685e63405ed0f2538109dc1

Contents?: true

Size: 735 Bytes

Versions: 2

Compression:

Stored size: 735 Bytes

Contents

require 'test_helper'

module AuthEng
  class UsersControllerTest < ActionController::TestCase
    test "should get index" do
      get :index
      assert_response :success
    end
  
    test "should get new" do
      get :new
      assert_response :success
    end
  
    test "should get create" do
      get :create
      assert_response :success
    end
  
    test "should get edit" do
      get :edit
      assert_response :success
    end
  
    test "should get update" do
      get :update
      assert_response :success
    end
  
    test "should get show" do
      get :show
      assert_response :success
    end
  
    test "should get destroy" do
      get :destroy
      assert_response :success
    end
  
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
auth_eng-0.0.2 test/functional/auth_eng/users_controller_test.rb
auth_eng-0.0.1 test/functional/auth_eng/users_controller_test.rb