Sha256: 2ff2e666a52e70faf5c7dcccf711576e74aa8c92dbf8630131a0b1642d1c98c6

Contents?: true

Size: 1.49 KB

Versions: 4

Compression:

Stored size: 1.49 KB

Contents

# Copyright (c) 2008-2013 Michael Dvorkin and contributors.
#
# Fat Free CRM is freely distributable under the terms of MIT license.
# See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php
#------------------------------------------------------------------------------
require 'spec_helper'

describe "/users/change_password" do
  include UsersHelper

  before do
    login_and_assign
    assign(:user, @user = current_user)
  end

  describe "no errors:" do
    it "should flip [Change Password] form" do
      render

      rendered.should_not include("user_#{@user.id}")
      rendered.should include("crm.flip_form('change_password');")
      rendered.should include("crm.set_title('change_password', 'My Profile');")
    end

    it "should show flash message" do
      render

      rendered.should include("#flash")
      rendered.should include("crm.flash('notice')")
    end
  end # no errors

  describe "validation errors:" do
    it "should redraw the [Change Password] form and shake it" do
      @user.errors.add(:current_password, "error")
      render

      rendered.should include("$('#change_password').html")
      rendered.should include(%Q/$('#change_password').effect("shake"/)
      rendered.should include("$('#current_password').focus();")
    end

    it "should redraw the [Change Password] form and correctly set focus" do
      @user.errors.add(:user_password, "error")
      render

      rendered.should include("$('#user_password').focus();")
    end

  end # errors
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fat_free_crm-0.13.6 spec/views/users/change_password.js.haml_spec.rb
fat_free_crm-0.13.5 spec/views/users/change_password.js.haml_spec.rb
fat_free_crm-0.13.4 spec/views/users/change_password.js.haml_spec.rb
fat_free_crm-0.13.3 spec/views/users/change_password.js.haml_spec.rb