Started again with Rails 4
[feedcatcher.git] / vendor / rails / activesupport / lib / active_support / testing / declarative.rb
diff --git a/vendor/rails/activesupport/lib/active_support/testing/declarative.rb b/vendor/rails/activesupport/lib/active_support/testing/declarative.rb
deleted file mode 100644 (file)
index cb6a584..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-module ActiveSupport
-  module Testing
-    module Declarative
-      # test "verify something" do
-      #   ...
-      # end
-      def test(name, &block)
-        test_name = "test_#{name.gsub(/\s+/,'_')}".to_sym
-        defined = instance_method(test_name) rescue false
-        raise "#{test_name} is already defined in #{self}" if defined
-        if block_given?
-          define_method(test_name, &block)
-        else
-          define_method(test_name) do
-            flunk "No implementation provided for #{name}"
-          end
-        end
-      end
-    end
-  end
-end