Sha256: cfb24e9093998e02def2726d08809999a4af2fc82b12c63f206e4bceca8a92e6
Contents?: true
Size: 1.34 KB
Versions: 14
Compression:
Stored size: 1.34 KB
Contents
require File.expand_path('../../spec_helper', __FILE__) describe ActsAsTaggableOn::TagsHelper do before(:each) do clean_database! @bob = TaggableModel.create(:name => "Bob Jones", :language_list => "ruby, php") @tom = TaggableModel.create(:name => "Tom Marley", :language_list => "ruby, java") @eve = TaggableModel.create(:name => "Eve Nodd", :language_list => "ruby, c++") @helper = class Helper include ActsAsTaggableOn::TagsHelper end.new end it "should yield the proper css classes" do tags = { } @helper.tag_cloud(TaggableModel.tag_counts_on(:languages), ["sucky", "awesome"]) do |tag, css_class| tags[tag.name] = css_class end tags["ruby"].should == "awesome" tags["java"].should == "sucky" tags["c++"].should == "sucky" tags["php"].should == "sucky" end it "should handle tags with zero counts (build for empty)" do bob = ActsAsTaggableOn::Tag.create(:name => "php") tom = ActsAsTaggableOn::Tag.create(:name => "java") eve = ActsAsTaggableOn::Tag.create(:name => "c++") tags = { } @helper.tag_cloud(ActsAsTaggableOn::Tag.all, ["sucky", "awesome"]) do |tag, css_class| tags[tag.name] = css_class end tags["java"].should == "sucky" tags["c++"].should == "sucky" tags["php"].should == "sucky" end end
Version data entries
14 entries across 14 versions & 4 rubygems