Sha256: 88964f7f565dd7baab44036bef226e805c5ca5988745cdb5784e77beeb907135
Contents?: true
Size: 410 Bytes
Versions: 4
Compression:
Stored size: 410 Bytes
Contents
# encoding: utf-8 require 'spec_helper' require File.expand_path('../fixtures/classes', __FILE__) describe Function::Predicate, '#inspect' do subject { object.inspect } let(:attribute) { Attribute::Integer.new(:id) } let(:object) { described_class.new(attribute, 1) } specify { expect { subject }.to raise_error(NotImplementedError, "#{described_class}#inspect must be implemented") } end
Version data entries
4 entries across 4 versions & 1 rubygems