require File.expand_path('../../../../spec_helper', __FILE__) describe "File::Stat#inspect" do before :each do @file = tmp('i_exist') touch(@file) { |f| f.write "rubinius" } end after :each do rm_r @file end it "produces a nicely formatted description of a File::Stat object" do st = File.stat(@file) expected = "#" st.inspect.should == expected end end