Created
September 3, 2008 21:50
-
-
Save technicalpickles/8677 to your computer and use it in GitHub Desktop.
Shoulda macros for attacfhment_fu. Place in test/shoulda_macros
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module AttachmentFuMacros | |
def should_have_attachment(options = {}) | |
klass = model_class | |
should_have_db_columns :size, :content_type, :filename | |
if options[:content_type] == :image | |
should_have_db_columns :height, :width | |
end | |
should "define AttachmentFu class methods" do | |
# breakpoint | |
class_modules = (class << klass; included_modules; end) | |
assert class_modules.include?(Technoweenie::AttachmentFu::ClassMethods), | |
"#{klass} doesn't define AttachmentFu class methods" | |
end | |
should "define AttachmentFu instance methods" do | |
instance_modules = klass.included_modules | |
assert instance_modules.include?(Technoweenie::AttachmentFu::InstanceMethods), | |
"#{klass} doesn't define AttachmentFu instance methods" | |
end | |
end | |
end | |
Test::Unit::TestCase.extend(AttachmentFuMacros) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment