Sha256: e58ac82ef858bd0d5ff0f11bf8654a8fda017a99b30e12203f03fdb6d7e1ab23
Contents?: true
Size: 1.42 KB
Versions: 1
Compression:
Stored size: 1.42 KB
Contents
require 'test_helper' require 'tag' class TagTest < ActiveSupport::TestCase fixtures :tags, :taggings, :users, :photos, :posts def test_name_required t = Tag.create assert_match /blank/, t.errors[:name].to_s end def test_name_unique t = Tag.create!(:name => "My tag") duplicate = t.dup assert !duplicate.save assert_match /taken/, duplicate.errors[:name].to_s end def test_taggings assert_equivalent [taggings(:jonathan_sky_good), taggings(:sam_flowers_good), taggings(:sam_flower_good), taggings(:ruby_good)], tags(:good).taggings assert_equivalent [taggings(:sam_ground_bad), taggings(:jonathan_bad_cat_bad)], tags(:bad).taggings end def test_to_s assert_equal tags(:good).name, tags(:good).to_s end def test_equality assert_equal tags(:good), tags(:good) assert_equal Tag.find(1), Tag.find(1) assert_equal Tag.new(:name => 'A'), Tag.new(:name => 'A') assert_not_equal Tag.new(:name => 'A'), Tag.new(:name => 'B') end def test_taggings_removed_when_tag_destroyed assert_difference "Tagging.count", -Tagging.count(:conditions => { :tag_id => tags(:good).id }) do assert tags(:good).destroy end end def test_all_counts assert_tag_counts Tag.counts, :good => 4, :bad => 2, :nature => 10, :question => 2, :animal => 3, :nature_animals_domestic_cat => 1, :nature_animals_domestic_cat_kitten => 1 end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
acts_as_20ggable-1.0.0 | test/lib/tag_test.rb |