diff options
Diffstat (limited to 'spec/ruby/library/pathname/empty_spec.rb')
| -rw-r--r-- | spec/ruby/library/pathname/empty_spec.rb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/spec/ruby/library/pathname/empty_spec.rb b/spec/ruby/library/pathname/empty_spec.rb new file mode 100644 index 0000000000..9f0305a0f0 --- /dev/null +++ b/spec/ruby/library/pathname/empty_spec.rb @@ -0,0 +1,32 @@ +require_relative '../../spec_helper' +require 'pathname' + +describe 'Pathname#empty?' do + before :all do + @file = tmp 'new_file_path_name.txt' + touch @file + @dir = tmp 'new_directory_path_name' + Dir.mkdir @dir + end + + after :all do + rm_r @file + rm_r @dir + end + + it 'returns true when file is not empty' do + Pathname.new(__FILE__).empty?.should == false + end + + it 'returns false when the directory is not empty' do + Pathname.new(__dir__).empty?.should == false + end + + it 'return true when file is empty' do + Pathname.new(@file).empty?.should == true + end + + it 'returns true when directory is empty' do + Pathname.new(@dir).empty?.should == true + end +end |
