Sha256: 1002a39f9ef3265603eccc1f52a33ccfdc17fbf6c23b7ddda5751de311ac6bac
Contents?: true
Size: 413 Bytes
Versions: 1
Compression:
Stored size: 413 Bytes
Contents
require 'pathname' describe 'Pathname.birthtime' do platform_is :osx do it 'returns a Time instance' do time = Pathname.birthtime(__FILE__) time.should be_an_instance_of(Time) end end end describe 'Pathname#birthtime' do platform_is :osx do it 'returns a Time instance' do time = Pathname.new(__FILE__).birthtime time.should be_an_instance_of(Time) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rubysl-pathname-2.3 | spec/birthtime_spec.rb |