Sha256: 56d2c96566812aee3948bc5c8135cbe102d8b698780d2f69a4321289181bea17
Contents?: true
Size: 864 Bytes
Versions: 4
Compression:
Stored size: 864 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe SQL::Generator::Function::Connective, '#visit_veritas_function_connective_negation' do subject { object.visit_veritas_function_connective_negation(negation) } let(:described_class) { Class.new(SQL::Generator::Visitor) { include SQL::Generator::Function::Connective } } let(:attribute) { Attribute::Integer.new(:id) } let(:negation) { Function::Connective::Negation.new(attribute.eq(1)) } let(:object) { described_class.new } before do described_class.class_eval { include SQL::Generator::Function::Predicate } end it_should_behave_like 'a generated SQL expression' its(:to_s) { should eql('NOT ("id" = 1)') } end
Version data entries
4 entries across 4 versions & 1 rubygems