Sha256: 034caa045fad7df8d267f011a80304116fa87be8f632519c3902fce8922a793d

Contents?: true

Size: 1.32 KB

Versions: 4

Compression:

Stored size: 1.32 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 "/accounts/_edit" do
  include AccountsHelper

  before do
    login_and_assign
    assign(:account, @account = FactoryGirl.create(:account))
    assign(:users, [current_user])
  end

  it "should render [edit account] form" do
    render

    expect(view).to render_template(partial: "_top_section")
    expect(view).to render_template(partial: "_contact_info")
    expect(view).to render_template(partial: "_permissions")

    expect(rendered).to have_tag("form[class=edit_account]") do |form|
      expect(form).to have_tag "input[type=hidden][id=account_user_id][value='#{@account.user_id}']"
    end
  end

  it "should render background info field if settings require so" do
    Setting.background_info = [:account]

    render
    expect(rendered).to have_tag("textarea[id=account_background_info]")
  end

  it "should not render background info field if settings do not require so" do
    Setting.background_info = []

    render
    expect(rendered).not_to have_tag("textarea[id=account_background_info]")
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
fat_free_crm-0.14.2 spec/views/accounts/_edit.haml_spec.rb
fat_free_crm-0.14.1 spec/views/accounts/_edit.haml_spec.rb
fat_free_crm-0.14.0 spec/views/accounts/_edit.haml_spec.rb
reduced_fat_crm-0.14.0 spec/views/accounts/_edit.haml_spec.rb