Sha256: 3385e72f93e7c3aa4b7cde0819a692fa0e73c64ab31b627db9a30490f6bf76ee

Contents?: true

Size: 1.74 KB

Versions: 10

Compression:

Stored size: 1.74 KB

Contents

class ActiveSupport::TestCase
  include ActiveRecord::TestFixtures
  self.use_transactional_fixtures = true

  class << self
    def requires_active_record_version(version_string, &blk)
      return unless Gem::Dependency.new('', version_string).match?('', ActiveRecord::VERSION::STRING)
      instance_eval(&blk)
    end

    def assertion(name, &block)
      mc = class << self; self; end
      mc.class_eval do
        define_method(name) do
          it(name, &block)
        end
      end
    end

    def asssertion_group(name, &block)
      mc = class << self; self; end
      mc.class_eval do
        define_method(name, &block)
      end
    end

    def macro(name, &block)
      class_eval do
        define_method(name, &block)
      end
    end

    def describe(description, toplevel = nil, &blk)
      text = toplevel ? description : "#{name} #{description}"
      klass = Class.new(self)

      klass.class_eval <<-RUBY_EVAL
        def self.name
          "#{text}"
        end
      RUBY_EVAL

      # do not inherit test methods from the superclass
      klass.class_eval do
        instance_methods.grep(/^test.+/) do |method|
          undef_method method
        end
      end

      klass.instance_eval(&blk)
    end
    alias context describe

    def let(name, &blk)
      define_method(name) do
        instance_variable_name = "@__let_#{name}"
        return instance_variable_get(instance_variable_name) if instance_variable_defined?(instance_variable_name)
        instance_variable_set(instance_variable_name, instance_eval(&blk))
      end
    end

    def it(description, &blk)
      define_method("test_#{name}_#{description}", &blk)
    end
  end
end

def describe(description, &blk)
  ActiveSupport::TestCase.describe(description, true, &blk)
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
activerecord-import-0.17.0 test/support/active_support/test_case_extensions.rb
activerecord-import-0.16.2 test/support/active_support/test_case_extensions.rb
activerecord-import-0.16.1 test/support/active_support/test_case_extensions.rb
activerecord-import-0.16.0 test/support/active_support/test_case_extensions.rb
activerecord-import-uuid-0.2 test/support/active_support/test_case_extensions.rb
activerecord-import-uuid-0.1 test/support/active_support/test_case_extensions.rb
activerecord-import-0.15.0 test/support/active_support/test_case_extensions.rb
activerecord-import-0.14.1 test/support/active_support/test_case_extensions.rb
activerecord-import-0.14.0 test/support/active_support/test_case_extensions.rb
activerecord-import-0.13.0 test/support/active_support/test_case_extensions.rb