diff options
author | Benoit Daloze <[email protected]> | 2019-09-29 19:13:37 +0200 |
---|---|---|
committer | Benoit Daloze <[email protected]> | 2019-09-29 19:13:37 +0200 |
commit | 070cbe22b70ec2bec36c7cfc84b726510afa306f (patch) | |
tree | 56cee87834c85bd9f358ebee51bab4893fb9952f /spec/ruby/shared/file/world_readable.rb | |
parent | d51b4e34fbdbe1a845aa2251b1fa3304de809b32 (diff) |
Update to ruby/spec@34e6246
Diffstat (limited to 'spec/ruby/shared/file/world_readable.rb')
-rw-r--r-- | spec/ruby/shared/file/world_readable.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/shared/file/world_readable.rb b/spec/ruby/shared/file/world_readable.rb index 0fd5a28397..85761e633f 100644 --- a/spec/ruby/shared/file/world_readable.rb +++ b/spec/ruby/shared/file/world_readable.rb @@ -37,7 +37,7 @@ describe :file_world_readable, shared: true do it "returns a Fixnum if the file is a directory and chmod 644" do dir = rand().to_s + '-ww' Dir.mkdir(dir) - Dir.exist?(dir).should be_true + Dir.should.exist?(dir) File.chmod(0644, dir) @object.world_readable?(dir).should be_an_instance_of(Fixnum) Dir.rmdir(dir) |