Sha256: da54277efd043bfd4198f33f41d9bd5b5a28714209f2307dbd224cf09ffbcd1a
Contents?: true
Size: 352 Bytes
Versions: 29
Compression:
Stored size: 352 Bytes
Contents
RSpec::Matchers.define :act_as_assets do match do |model| model.new if model.respond_to?(:new) model.respond_to?(:acting_as_assets?) && model.acting_as_assets? end end RSpec::Matchers.define :act_as_unique_asset do match do |model| model.new if model.respond_to?(:new) model.respond_to?(:acts_as_assets_check_uniqness) end end
Version data entries
29 entries across 29 versions & 1 rubygems