I have a module that extends ActiveSupport::Concern. Here is the
`included` block:

    included do
      after_save :save_tags

      has_many :taggings, :as => :taggable
      has_many :tags, :through => :taggings
    end

How can I stub out these calls? I have tried a few ways, but Ruby
complains that these methods don't exist when I try and test the
module in isolation.

Thanks!

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to