Sha256: 2ba7b8bbeef6d347a1b2e3069c0a273c2b9ba267cd72d36a194a22c03b7a6c07
Contents?: true
Size: 1.57 KB
Versions: 6
Compression:
Stored size: 1.57 KB
Contents
require 'spec_helper' describe TrophyHelper, type: :helper do describe "#display_trophy_link" do let(:user) { FactoryGirl.create(:user) } let(:id) { '9999' } let(:text_attributes) { '[data-add-text="Highlight File on Profile"][data-remove-text="Unhighlight File"]' } let(:url_attribute) { "[data-url=\"/users/#{user.to_param}/trophy?file_id=#{id}\"]" } context "when there is no trophy" do it "has a link for highlighting" do out = helper.display_trophy_link(user, id) { |text| "foo #{text} bar" } node = Capybara::Node::Simple.new(out) expect(node).to have_selector("a.trophy-class.trophy-off#{text_attributes}#{url_attribute}") expect(node).to have_link 'foo Highlight File on Profile bar', href: '#' end end context "when there is a trophy" do before do user.trophies.create(generic_file_id: id) end it "has a link for highlighting" do out = helper.display_trophy_link(user, id) { |text| "foo #{text} bar" } node = Capybara::Node::Simple.new(out) expect(node).to have_selector("a.trophy-class.trophy-on#{text_attributes}#{url_attribute}") expect(node).to have_link 'foo Unhighlight File bar', href: '#' end it "allows removerow to be passed" do out = helper.display_trophy_link(user, id, data: { removerow: true }) { |text| "foo #{text} bar" } node = Capybara::Node::Simple.new(out) expect(node).to have_selector("a.trophy-class.trophy-on[data-removerow=\"true\"]#{text_attributes}#{url_attribute}") end end end end
Version data entries
6 entries across 6 versions & 1 rubygems