Sha256: 2a29c75417c38df2f5aa0743d5e722c0ec86a83a04b5dad602bdbaee026b154e

Contents?: true

Size: 326 Bytes

Versions: 3

Compression:

Stored size: 326 Bytes

Contents

require 'spec_helper'

describe "Acts As Taggable Simple" do
  describe "Taggable Method Generation" do
    before :each do
      clean_database!
      @taggable = TaggableModel.new
    end

    it "should generate a tag_list and tag_list= method" do
      @taggable.should respond_to(:tag_list, :tag_list=)
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
acts_as_taggable_simple-0.0.4 spec/acts_as_taggable_simple/acts_as_taggable_simple_spec.rb
acts_as_taggable_simple-0.0.3 spec/acts_as_taggable_simple/acts_as_taggable_simple_spec.rb
acts_as_taggable_simple-0.0.2 spec/acts_as_taggable_simple/acts_as_taggable_simple_spec.rb