Sha256: f5bf88c9a35dbc0bc5ede137a5721f5cb10d3d81cc67962ac9fc230dc8484b07

Contents?: true

Size: 864 Bytes

Versions: 1

Compression:

Stored size: 864 Bytes

Contents

# Test facets/class_extension.rb.

require 'facets/class_extend'
require 'test/unit'

class TC_ClassExtension < Test::Unit::TestCase

  # fixture

  module N
    class_extend do
      def n ; 43 ; end
      def s ; self ; end
    end
    #extend class_extend # NOTE: No longer needed!
  end

  class X
    include N
    def n ; 11 ; end
  end

  module K
    include N
    class_extend do
      def n ; super + 1 ; end
    end
  end

  class Z
    include K
  end

  # tests

  def test_01
    assert_equal( 43, N.n )
    assert_equal(  N, N.s )
  end
  def test_02
    assert_equal( 43, X.n )
    assert_equal(  X, X.s )
  end
  def test_03
    assert_equal( 11, X.new.n )
  end
  def test_04
    assert_equal( 44, K.n )  # notice the difference!
    assert_equal(  K, K.s )
  end
  def test_05
    assert_equal( 44, Z.n )
    assert_equal(  Z, Z.s )
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
facets-2.7.0 test/more/test_class_extend.rb