Sha256: b7037931e72de75ebbe84445cb0acfe17333701f70fbe77135c2d747c3a12a55
Contents?: true
Size: 472 Bytes
Versions: 12
Compression:
Stored size: 472 Bytes
Contents
require 'spec_helper' describe CF do describe CF::Boolean do describe 'value' do it 'should return true for CF::Boolean::TRUE' do CF::Boolean::TRUE.value.should == true end it 'should return false for CF::Boolean::FALSE' do CF::Boolean::FALSE.value.should == false end end describe 'to_ruby' do it 'should behave like value' do CF::Boolean::FALSE.to_ruby.should == false end end end end
Version data entries
12 entries across 9 versions & 3 rubygems