Sha256: 095bb83caec560949d6319c8d6532f42cb2dcc8335887ea0972199beb81448bc
Contents?: true
Size: 317 Bytes
Versions: 4
Compression:
Stored size: 317 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Function::Predicate::Inclusion, '#inspect' do subject { object.inspect } let(:attribute) { Attribute::Integer.new(:id) } let(:object) { described_class.new(attribute, [ 1 ]) } it { should == "(#{attribute.inspect} ∈ #{[ 1 ].inspect})" } end
Version data entries
4 entries across 4 versions & 1 rubygems