Sha256: 27f028553cc678d8f03bde87cfc0fee16786b13000d713bee4ef56254d076f09

Contents?: true

Size: 786 Bytes

Versions: 108

Compression:

Stored size: 786 Bytes

Contents

module ActiveSupport
  module Testing
    module Declarative
      unless defined?(Spec)
        # Helper to define a test method using a String. Under the hood, it replaces
        # spaces with underscores and defines the test method.
        #
        #   test "verify something" do
        #     ...
        #   end
        def test(name, &block)
          test_name = "test_#{name.gsub(/\s+/,'_')}".to_sym
          defined = method_defined? test_name
          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

108 entries across 103 versions & 15 rubygems

Version Path
activesupport-4.2.5 lib/active_support/testing/declarative.rb
activesupport-4.2.5.rc2 lib/active_support/testing/declarative.rb
activesupport-4.2.5.rc1 lib/active_support/testing/declarative.rb
sc_core-0.0.7 test/dummy/vendor/bundle/ruby/2.2.0/gems/activesupport-4.2.4/lib/active_support/testing/declarative.rb
activesupport-4.2.4 lib/active_support/testing/declarative.rb
activesupport-4.2.4.rc1 lib/active_support/testing/declarative.rb
solidus_backend-1.0.0.pre3 vendor/bundle/gems/activesupport-4.2.3/lib/active_support/testing/declarative.rb
solidus_backend-1.0.0.pre2 vendor/bundle/gems/activesupport-4.2.3/lib/active_support/testing/declarative.rb
solidus_backend-1.0.0.pre vendor/bundle/gems/activesupport-4.2.1/lib/active_support/testing/declarative.rb
solidus_backend-1.0.0.pre vendor/bundle/gems/activesupport-4.2.2/lib/active_support/testing/declarative.rb
activesupport-4.2.3 lib/active_support/testing/declarative.rb
activesupport-4.2.3.rc1 lib/active_support/testing/declarative.rb
activesupport-4.2.2 lib/active_support/testing/declarative.rb
shoppe-paypal-1.1.0 vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.1/lib/active_support/testing/declarative.rb
activesupport-4.2.1 lib/active_support/testing/declarative.rb
activesupport-4.2.1.rc4 lib/active_support/testing/declarative.rb
activesupport-4.2.1.rc3 lib/active_support/testing/declarative.rb
activesupport-4.2.1.rc2 lib/active_support/testing/declarative.rb
activesupport-4.2.1.rc1 lib/active_support/testing/declarative.rb
activejob-lock-0.0.1 rails/activesupport/lib/active_support/testing/declarative.rb