Sha256: 07499cf6d9e22da6a254ebc1a42c8965202214675afb241330ce6455dd695f74

Contents?: true

Size: 484 Bytes

Versions: 11

Compression:

Stored size: 484 Bytes

Contents

require File.dirname(__FILE__) + '/../test_helper'
require 'users_controller'

# Re-raise errors caught by the controller.
class UsersController; def rescue_action(e) raise e end; end

class UsersControllerTest < Test::Unit::TestCase
  fixtures :all

  def setup
    @controller = UsersController.new
    @request    = ActionController::TestRequest.new
    @response   = ActionController::TestResponse.new
    @user       = User.find(:first)
  end
  
  should_filter_params :ssn

end

Version data entries

11 entries across 11 versions & 6 rubygems

Version Path
Flamefork-shoulda-2.10.1 test/functional/users_controller_test.rb
Flamefork-shoulda-2.10.2 test/functional/users_controller_test.rb
francois-shoulda-2.10.1 test/functional/users_controller_test.rb
rmm5t-shoulda-2.9.1 test/functional/users_controller_test.rb
technicalpickles-shoulda-2.10.0 test/functional/users_controller_test.rb
thoughtbot-shoulda-2.10.0 test/functional/users_controller_test.rb
thoughtbot-shoulda-2.10.1 test/functional/users_controller_test.rb
thoughtbot-shoulda-2.9.2 test/functional/users_controller_test.rb
shoulda-2.9.2 test/functional/users_controller_test.rb
shoulda-2.10.0 test/functional/users_controller_test.rb
shoulda-2.10.1 test/functional/users_controller_test.rb