summaryrefslogtreecommitdiff
path: root/spec/ruby/core/filetest/grpowned_spec.rb
blob: d073cb9770e60401e5ff4e8fe3ddc086fa9fcaab (plain)
1
2
3
4
5
6
7
8
9
10
require_relative '../../spec_helper'
require_relative '../../shared/file/grpowned'

describe "FileTest.grpowned?" do
  it_behaves_like :file_grpowned, :grpowned?, FileTest

  it "returns false if the file doesn't exist" do
    FileTest.grpowned?("xxx-tmp-doesnt_exist-blah").should be_false
  end
end