Sha256: 716b05cd7d3c141c00f0ba5e4669054517012004ed661f6945f806e048cc3d27

Contents?: true

Size: 1.08 KB

Versions: 9

Compression:

Stored size: 1.08 KB

Contents

require File.expand_path('../test_helper', File.dirname(__FILE__))

class TagTest < ActiveSupport::TestCase
  
  def test_fixtures_validity
    Blog::Tag.all.each do |tag|
      assert tag.valid?, tag.errors.to_s
    end
  end
  
  def test_validation
    old_tag = blog_tags(:tag)
    tag = Blog::Tag.new(:name => old_tag.name)
    assert tag.invalid?
    assert_has_errors_on tag, [:name]
  end
  
  def test_strip_name
    tag = Blog::Tag.new(:name => ' Test Tag ')
    assert tag.valid?
    assert_equal 'Test Tag', tag.name
  end
  
  def test_creation
    assert_difference 'Blog::Tag.count' do
      tag = Blog::Tag.create(:name => 'Test Tag')
    end
  end
  
  def test_destroy
    assert_difference ['Blog::Tag.count', 'Blog::Tagging.count'], -1 do
      blog_tags(:tag).destroy
    end
  end
  
  def test_scopes
    assert_equal 2, Blog::Tag.tags.count
    assert_equal blog_tags(:tag), Blog::Tag.tags.first
    assert_equal blog_tags(:duplicate), Blog::Tag.tags.last
    
    assert_equal 1, Blog::Tag.categories.count
    assert_equal blog_tags(:category), Blog::Tag.categories.first
  end
  
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
comfy_blog-0.1.8 test/unit/tag_test.rb
comfy_blog-0.1.7 test/unit/tag_test.rb
comfy_blog-0.1.6 test/unit/tag_test.rb
comfy_blog-0.1.5 test/unit/tag_test.rb
comfy_blog-0.1.4 test/unit/tag_test.rb
comfy_blog-0.1.3 test/unit/tag_test.rb
comfy_blog-0.1.2 test/unit/tag_test.rb
comfy_blog-0.1.1 test/unit/tag_test.rb
comfy_blog-0.1.0 test/unit/tag_test.rb