module ActiveSupport module Testing module Declarative def xtest(name, &block) test_name = "test_#{name.gsub(/\s+/, '_')}" rescue false puts "#{test_name} not ready to be tested" end end end end