aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/file/stat/atime_spec.rb
blob: 9f1111ced1ae7db296f41d0625b858c58e6d29fd (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#atime" 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 atime of a File::Stat object" do
    st = File.stat(@file)
    st.atime.should be_kind_of(Time)
    st.atime.should <= Time.now
  end
end