Sha256: 6ffd8fe1553627f16b6d02b9f06e97a50f82e1edc6ba765fc56f8aaedb675490

Contents?: true

Size: 781 Bytes

Versions: 13

Compression:

Stored size: 781 Bytes

Contents

require 'test_helper'

class <%= user_plural_class_name %>ControllerTest < ActionController::TestCase
  context "new action" do
    should "render new template" do
      get :new
      assert_template 'new'
    end
  end

  context "create action" do
    should "render new template when model is invalid" do
      <%= user_class_name %>.any_instance.stubs(:valid?).returns(false)
      post :create
      assert_template 'new'
    end

    should "redirect when model is valid" do
      <%= user_class_name %>.any_instance.stubs(:valid?).returns(true)
      post :create
      assert_redirected_to root_url
    <%- unless options[:authlogic] -%>
      assert_equal assigns['<%= user_singular_name %>'].id, session['<%= user_singular_name %>_id']
    <%- end -%>
    end
  end
end

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
flockonus-nifty-generators-0.0.12 rails_generators/nifty_authentication/templates/tests/shoulda/users_controller.rb
nifty-generators-0.4.6 rails_generators/nifty_authentication/templates/tests/shoulda/users_controller.rb
flockonus-nifty-generators-0.0.11 rails_generators/nifty_authentication/templates/tests/shoulda/users_controller.rb
flockonus-nifty-generators-0.0.10 rails_generators/nifty_authentication/templates/tests/shoulda/users_controller.rb
flockonus-nifty-generators-0.0.9 rails_generators/nifty_authentication/templates/tests/shoulda/users_controller.rb
nifty-generators-0.4.5 rails_generators/nifty_authentication/templates/tests/shoulda/users_controller.rb
flockonus-nifty-generators-0.0.8 rails_generators/nifty_authentication/templates/tests/shoulda/users_controller.rb
flockonus-nifty-generators-0.0.7 rails_generators/nifty_authentication/templates/tests/shoulda/users_controller.rb
flockonus-nifty-generators-0.0.6 rails_generators/nifty_authentication/templates/tests/shoulda/users_controller.rb
nifty-generators-0.4.4 rails_generators/nifty_authentication/templates/tests/shoulda/users_controller.rb
nifty-generators-0.4.3 rails_generators/nifty_authentication/templates/tests/shoulda/users_controller.rb
nifty-generators-0.4.2 rails_generators/nifty_authentication/templates/tests/shoulda/users_controller.rb
nifty-generators-0.4.1 rails_generators/nifty_authentication/templates/tests/shoulda/users_controller.rb