Sha256: 6549516702e57b4e6c49c258aa69e207420be69e6df79a1c95dfca5951e66000

Contents?: true

Size: 1.49 KB

Versions: 1

Compression:

Stored size: 1.49 KB

Contents

require 'spec_helper'

describe "Managing tags via names" do
  let(:article) { Article.create }

  it "returns tag names" do
    article.tags << TagBat::Tag.create(name: 'melbourne')
    article.tag_names.to_a.should == ['melbourne']
  end

  it "adds tags via their names" do
    article.tag_names << 'melbourne'
    article.tags.collect(&:name).should == [ 'melbourne']
  end

  it "accepts a completely new set of tags" do
    article.tag_names = ['portland', 'oregon']
    article.tags.collect(&:name).should == ['portland', 'oregon']
  end

  it "enumerates through tag names" do
    article.tag_names = ['melbourne', 'victoria']
    names = []

    article.tag_names.each do |name|
      names << name
    end
  end

  it "does not allow duplications of tags" do
    existing = Article.create
    existing.tags << TagBat::Tag.create(:name => "portland")

    article.tag_names = ['portland']
    existing.tag_ids.should == article.tag_ids
  end

  it "appends tag names" do
    article.tag_names = ['portland']
    article.tag_names += ['oregon', 'ruby']

    article.tags.collect(&:name).should == ['portland', 'oregon', 'ruby']
  end

  it "removes a single tag name" do
    article.tag_names = ['portland', 'oregon']
    article.tag_names.delete 'oregon'

    article.tags.collect(&:name).should == ['portland']
  end

  it "removes tag names" do
    article.tag_names  = ['portland', 'oregon', 'ruby']
    article.tag_names -= ['oregon', 'ruby']

    article.tags.collect(&:name).should == ['portland']
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tag_bat-0.1.0 spec/acceptance/tag_names_spec.rb