aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/file/stat/ctime_spec.rb
blob: 2f82dfdab635038c01ee372d6cd421317dbc6fa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require File.expand_path('../../../../spec_helper', __FILE__)

describe "File::Stat#ctime" 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 ctime of a File::Stat object" do
    st = File.stat(@file)
    st.ctime.should be_kind_of(Time)
    st.ctime.should <= Time.now
  end
end