Sha256: 633428f9c5db47d0f129c30556567fc5f344bdd4fefe8a91bea53555ac4532d5
Contents?: true
Size: 411 Bytes
Versions: 18
Compression:
Stored size: 411 Bytes
Contents
module ActiveModelHelpers def custom_validation(&block) define_model(:example, :attr => :integer) do validate :custom_validation define_method(:custom_validation, &block) end.new end def validating_format(options) define_model :example, :attr => :string do validates_format_of :attr, options end.new end end RSpec.configure do |c| c.include ActiveModelHelpers end
Version data entries
18 entries across 17 versions & 2 rubygems