summaryrefslogtreecommitdiff
path: root/spec/ruby/core/file/zero_spec.rb
blob: 63dd85ee46a924cf445b03ef3525c7bd2458c38c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require_relative '../../spec_helper'
require_relative '../../shared/file/zero'

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