summaryrefslogtreecommitdiff
path: root/spec/ruby/core/file/zero_spec.rb
blob: 0fc087faff3d0a1654a51987e7b73754575feb95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../../../shared/file/zero', __FILE__)

describe "File.zero?" do
  it_behaves_like :file_zero, :zero?, File
  it_behaves_like :file_zero_missing, :zero?, File

  platform_is :solaris do
    it "returns false for /dev/null" do
      File.zero?('/dev/null').should == true
    end
  end
end