Sha256: 555601b34a01d73c01e13291e36a959226154d6097c1c9bc44e0c082010423a0
Contents?: true
Size: 405 Bytes
Versions: 13
Compression:
Stored size: 405 Bytes
Contents
require 'spec_helper' describe Coercer::Integer, '#datetime_proc' do subject { object.datetime_proc } let(:object) { described_class.new } context "with Rubinius" do before do unless Coercible.rbx? Coercible.stub!(:rbx? => true) end end it { should be_instance_of(Proc) } end context "with other Ruby VMs" do it { should be_instance_of(Proc) } end end
Version data entries
13 entries across 11 versions & 4 rubygems