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

describe "File::Stat#nlink" do
  before :each do
    @file = tmp("stat_nlink")
    @link = @file + ".lnk"
    touch @file
  end

  after :each do
    rm_r @link, @file
  end

  platform_is_not :windows do
    it "returns the number of links to a file" do
      File::Stat.new(@file).nlink.should == 1
      File.link(@file, @link)
      File::Stat.new(@file).nlink.should == 2
    end
  end
end