/vendor/gems/facets-2.4.5/test/core/class/test_descendents.rb
https://bitbucket.org/mediashelf/fedora-migrator · Ruby · 14 lines · 10 code · 4 blank · 0 comment · 0 complexity · d9a363994c288f5544d57886dbfd0849 MD5 · raw file
- require 'facets/class/descendents.rb'
- require 'test/unit'
- class TestClassDescendents < Test::Unit::TestCase
- class A ; end
- class B < A ; end
- class C < B ; end
- def test_descendents
- assert_equal( [C,B], A.descendents )
- end
- end