Sha256: e4c90c221b3144b637b02c437ead1953667d1a2aa1b34edde9d1c3084619f7b7

Contents?: true

Size: 265 Bytes

Versions: 1

Compression:

Stored size: 265 Bytes

Contents

require 'spec_helper'

describe 'Veritas::Logic::Predicate::LessThan#inspect' do
  subject { less_than.inspect }

  let(:attribute) { Attribute::Integer.new(:id) }
  let(:less_than) { attribute.lt(1)             }

  it { should == "#{attribute.inspect} < 1" }
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
veritas-0.0.1 spec/unit/veritas/logic/predicate/less_than/inspect_spec.rb