blob: 08a2b83463becd03270a4d4c36354c39e7e9ccd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require_relative '../../../spec_helper'
describe "File::Stat#mtime" do
before :each do
@file = tmp('i_exist')
touch(@file) { |f| f.write "rubinius" }
end
after :each do
rm_r @file
end
it "returns the mtime of a File::Stat object" do
st = File.stat(@file)
st.mtime.should be_kind_of(Time)
st.mtime.should <= Time.now
end
end
|