Sha256: 1d298bdf6fd12c5da445e395236fcbcee8dbdb0ca67e7deef2df6d7fc02ce9bb

Contents?: true

Size: 1.1 KB

Versions: 6

Compression:

Stored size: 1.1 KB

Contents

require File.join(File.dirname(File.expand_path(__FILE__)), "spec_helper")

describe "Sequel::Plugins::ValidationHelpers" do
  before do
    @c = Class.new(Sequel::Model(:foo))
    @c.class_eval do
      columns :a, :b, :c
      plugin :validation_contexts
      def validate
        errors.add(:a, 'bad') if a == 1 && validation_context == :create
        errors.add(:b, 'bad') if b == 2 && validation_context == :update
        errors.add(:c, 'bad') if c == 3 && validation_context == :foo
      end
    end
  end

  it "should support :validation_context option to valid?" do
    @c.new(:c=>3).valid?.must_equal true
    @c.new(:c=>3).valid?(:validation_context=>:foo).must_equal false
  end

  it "should support :validation_context option to save?" do
    @c.new(:c=>3).save
    proc{@c.new(:c=>3).save(:validation_context=>:foo)}.must_raise Sequel::ValidationFailed
  end

  it "should raise error if using a validation context on a frozen model instance" do
    @c.new(:c=>3).freeze.valid?.must_equal true
    proc{@c.new(:c=>3).freeze.valid?(:validation_context=>:foo)}.must_raise RuntimeError, TypeError
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
sequel-4.49.0 spec/extensions/validation_contexts_spec.rb
sequel-4.48.0 spec/extensions/validation_contexts_spec.rb
tdiary-5.0.5 vendor/bundle/gems/sequel-4.47.0/spec/extensions/validation_contexts_spec.rb
sequel-4.47.0 spec/extensions/validation_contexts_spec.rb
sequel-4.46.0 spec/extensions/validation_contexts_spec.rb
sequel-4.45.0 spec/extensions/validation_contexts_spec.rb