1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/core/file/lchmod_spec.rb
2020-05-03 12:28:29 +02:00

50 lines
1.3 KiB
Ruby

require_relative '../../spec_helper'
describe "File.lchmod" do
platform_is_not :linux, :windows, :openbsd, :solaris, :aix do
before :each do
@fname = tmp('file_chmod_test')
@lname = @fname + '.lnk'
touch(@fname) { |f| f.write "rubinius" }
rm_r @lname
File.symlink @fname, @lname
end
after :each do
rm_r @lname, @fname
end
it "changes the file mode of the link and not of the file" do
File.chmod(0222, @lname).should == 1
File.lchmod(0755, @lname).should == 1
File.lstat(@lname).should.executable?
File.lstat(@lname).should.readable?
File.lstat(@lname).should.writable?
File.stat(@lname).should_not.executable?
File.stat(@lname).should_not.readable?
File.stat(@lname).should.writable?
end
end
platform_is :openbsd, :aix do
it "returns false from #respond_to?" do
File.respond_to?(:lchmod).should be_false
end
it "raises a NotImplementedError when called" do
-> { File.lchmod 0, "foo" }.should raise_error(NotImplementedError)
end
end
platform_is :linux do
it "raises a NotImplementedError or Errno::ENOTSUP when called" do
-> { File.lchmod 0, "foo" }.should raise_error(Exception) { |e|
[NotImplementedError, Errno::ENOTSUP].should include(e.class)
}
end
end
end