Sha256: 3ff5de8884b8505dd9807ffa16ac84a33cfc27126d68ddaaac522abdbf9bb73c
Contents?: true
Size: 1.69 KB
Versions: 7
Compression:
Stored size: 1.69 KB
Contents
# frozen_string_literal: true # 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 "/application/_auto_complete" do include AccountsHelper before do login end %i[account campaign contact lead opportunity].each do |model| it "should render autocomplete list if #{model} matches found" do @auto_complete = if model == :lead build_stubbed(:lead, first_name: "Billy", last_name: "Bones", company: "Hello, World!") elsif model == :contact build_stubbed(:contact, first_name: "Billy", last_name: "Bones") else build_stubbed(model, name: "Hello, World!") end assign(:auto_complete, [@auto_complete]) render expect(rendered).to have_tag("ul", count: 1) do |list| if model == :lead expect(list).to have_tag("li", id: @auto_complete.id.to_s, text: "#{@auto_complete.name} (#{@auto_complete.company})") else expect(list).to have_tag("li", id: @auto_complete.id.to_s, text: @auto_complete.name) end end end it "should render a message if #{model} doesn't match the query" do assign(:query, "Hello") assign(:auto_complete, []) render expect(rendered).to have_tag("ul", count: 1) do |_list| with_tag("li", id: nil, count: 1, text: /^No/) end end end end
Version data entries
7 entries across 7 versions & 1 rubygems