kastner (owner)

Revisions

gist: 133560 Download_button fork
public
Public Clone URL: git://gist.github.com/133560.git
Embed All Files: show embed
test_helper.rb #
1
2
3
4
5
6
7
8
9
10
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