# File lib/fastcst/changeset.rb, line 726
726:         def test(indata, dir)
727:             begin
728:                 Dir.chdir dir do
729:                     @deleted_dirs.each do |path|
730:                         FileUtils::DryRun.rmdir path
731:                     end
732:                     
733:                     @created_dirs.each do |path|
734:                         FileUtils::DryRun.mkdir_p path
735:                     end
736:                 end
737:                 
738:             rescue
739:                 UI.failure :delta, "#{$!}"
740:                 skip(indata)
741:                 return false
742:             end
743:             
744:             return true
745:         end