Sha256: e215a0fd31566c252493950ee7c9092fd69d9e5aad04a98c77031e5c251dbe77
Contents?: true
Size: 1.22 KB
Versions: 15
Compression:
Stored size: 1.22 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 File.expand_path(File.dirname(__FILE__) + '/../../spec_helper') describe "/accounts/_new" do include AccountsHelper before do login_and_assign assign(:account, Account.new) assign(:users, [current_user]) end it "should render [create 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=new_account]") 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
15 entries across 15 versions & 2 rubygems