# File lib/fastcst/changeset.rb, line 393
393:         def test(indata, dir)
394:             begin
395:                 Dir.chdir dir do
396:                     FileUtils::DryRun.rm @path
397:                 end
398:                 
399:             rescue
400:                 UI.failure :delta, "#{$!}"
401:                 skip(indata)
402:                 return false
403:             end
404:             
405:             return true
406:         end