Sha256: 501179331546aee12e623c6355c517c1bb54dc100e3a9896636903d8fce138b8
Contents?: true
Size: 1.2 KB
Versions: 2
Compression:
Stored size: 1.2 KB
Contents
require 'spec_helper' require 'integration/automatic_validation/spec_helper' describe "A class with inferred validations disabled for all properties with an option" do before :all do @klass = Class.new do include DataMapper::Resource property :id, DataMapper::Types::Serial, :auto_validation => false property :name, String, :nullable => false, :auto_validation => false property :bool, DataMapper::Types::Boolean, :nullable => false, :auto_validation => false end @model = @klass.new end describe "when instantiated w/o any attributes" do it_should_behave_like "valid model" end end describe "A class with inferred validations disabled for all properties with a block" do before :all do @klass = Class.new do include DataMapper::Resource without_auto_validations do property :id, DataMapper::Types::Serial property :name, String, :nullable => false property :bool, DataMapper::Types::Boolean, :nullable => false end end @model = @klass.new end describe "when instantiated w/o any attributes" do it_should_behave_like "valid model" end end
Version data entries
2 entries across 2 versions & 1 rubygems