aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/file/stat/mode_spec.rb
blob: c85fb85a58b629452947ec3490e042ea2d138a6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require_relative '../../../spec_helper'

describe "File::Stat#mode" do
  before :each do
    @file = tmp('i_exist')
    touch(@file) { |f| f.write "rubinius" }
    File.chmod(0644, @file)
  end

  after :each do
    rm_r @file
  end

  it "returns the mode of a File::Stat object" do
    st = File.stat(@file)
    st.mode.is_a?(Integer).should == true
    (st.mode & 0777).should == 0644
  end
end