Sha256: 316b7af465bf29457954f0eaa142da360814b473dcf0e918281f990258c52fb2

Contents?: true

Size: 1004 Bytes

Versions: 30

Compression:

Stored size: 1004 Bytes

Contents

module ActiveSupport
  module Testing
    module Declarative

      def self.extended(klass) #:nodoc:
        klass.class_eval do

          unless method_defined?(:describe)
            def self.describe(text)
              class_eval <<-RUBY_EVAL, __FILE__, __LINE__ + 1
                def self.name
                  "#{text}"
                end
              RUBY_EVAL
            end
          end

        end
      end

      unless defined?(Spec)
        # 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
end

Version data entries

30 entries across 30 versions & 2 rubygems

Version Path
activesupport-4.0.13 lib/active_support/testing/declarative.rb
activesupport-4.0.13.rc1 lib/active_support/testing/declarative.rb
activesupport-4.0.11.1 lib/active_support/testing/declarative.rb
activesupport-4.0.12 lib/active_support/testing/declarative.rb
activesupport-4.0.11 lib/active_support/testing/declarative.rb
activesupport-4.0.10 lib/active_support/testing/declarative.rb
activesupport-4.0.10.rc2 lib/active_support/testing/declarative.rb
activesupport-4.0.10.rc1 lib/active_support/testing/declarative.rb
activesupport-4.0.9 lib/active_support/testing/declarative.rb
activesupport-4.0.8 lib/active_support/testing/declarative.rb
activesupport-4.0.7 lib/active_support/testing/declarative.rb
activesupport-4.0.6 lib/active_support/testing/declarative.rb
activesupport-4.0.6.rc3 lib/active_support/testing/declarative.rb
activesupport-4.0.6.rc2 lib/active_support/testing/declarative.rb
activesupport-4.0.6.rc1 lib/active_support/testing/declarative.rb
activesupport-4.0.5 lib/active_support/testing/declarative.rb
activesupport-4.0.4 lib/active_support/testing/declarative.rb
activesupport-4.0.4.rc1 lib/active_support/testing/declarative.rb
activesupport-4.0.3 lib/active_support/testing/declarative.rb
activesupport-4.0.2 lib/active_support/testing/declarative.rb