Sha256: c06e5b0399e43ee835dcb55ffd335836f0505f79d978b6c98e90c487127793f0

Contents?: true

Size: 1.87 KB

Versions: 10

Compression:

Stored size: 1.87 KB

Contents

# -*- encoding : utf-8 -*-
# simple testing support
#
  require 'test/unit'

  def Testing(*args, &block)
    Class.new(Test::Unit::TestCase) do
      eval("This=self")

      def self.slug_for(*args)
        string = args.flatten.compact.join('-')
        words = string.to_s.scan(%r/\w+/)
        words.map!{|word| word.gsub %r/[^0-9a-zA-Z_-]/, ''}
        words.delete_if{|word| word.nil? or word.strip.empty?}
        words.join('-').downcase
      end

      def This.testing_subclass_count
        @testing_subclass_count ||= 1
      ensure
        @testing_subclass_count += 1
      end

      slug = slug_for(*args).gsub(%r/-/,'_')
      name = ['TESTING', '%03d' % This.testing_subclass_count, slug].delete_if{|part| part.empty?}.join('_')
      name = name.upcase!
      const_set(:Name, name)
      def self.name() const_get(:Name) end

      def self.testno()
        '%05d' % (@testno ||= 0)
      ensure
        @testno += 1
      end

      def self.testing(*args, &block)
        define_method("test_#{ testno }_#{ slug_for(*args) }", &block)
      end

      alias_method '__assert__', 'assert'

      def assert(*args, &block)
        if block
          label = "assert(#{ args.join ' ' })"
          result = nil
          assert_nothing_raised{ result = block.call }
          __assert__(result, label)
          result
        else
          result = args.shift
          label = "assert(#{ args.join ' ' })"
          __assert__(result, label)
          result
        end
      end

      def subclass_of exception
        class << exception
          def ==(other) super or self > other end
        end
        exception
      end

      alias_method '__assert_raises__', 'assert_raises'

      def assert_raises(*args, &block)
        args.push(subclass_of(Exception)) if args.empty?
        __assert_raises__(*args, &block)
      end

      module_eval(&block)
      self
    end
  end

Version data entries

10 entries across 10 versions & 3 rubygems

Version Path
assassin-1.4.2 test/lib/testing.rb
assassin-0.4.2 test/lib/testing.rb
map-6.6.0 test/lib/testing.rb
asana2flowdock-1.0.0 vendor/bundle/ruby/1.9.1/gems/map-6.5.5/test/lib/testing.rb
map-6.5.5 test/lib/testing.rb
map-6.5.4 test/lib/testing.rb
map-6.5.3 test/lib/testing.rb
map-6.5.2 test/lib/testing.rb
map-6.5.1 test/lib/testing.rb
map-6.5.0 test/lib/testing.rb