facets 2.1.3 → 2.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/AUTHORS +14 -12
- data/CHANGES +45 -2
- data/NOTES +9 -7
- data/lib/core/facets/1stclassmethod.rb +15 -11
- data/lib/core/facets/array.rb +0 -1
- data/lib/core/facets/array/conjoin.rb +40 -8
- data/lib/core/facets/array/delete.rb +8 -2
- data/lib/core/facets/array/indexable.rb +30 -3
- data/lib/core/facets/array/merge.rb +11 -0
- data/lib/core/facets/array/only.rb +3 -3
- data/lib/core/facets/array/pad.rb +4 -46
- data/lib/core/facets/array/rotate.rb +4 -4
- data/lib/core/facets/array/select.rb +2 -0
- data/lib/core/facets/array/splice.rb +16 -2
- data/lib/core/facets/array/stackable.rb +6 -40
- data/lib/core/facets/binding.rb +3 -0
- data/lib/core/facets/binding/cflow.rb +10 -64
- data/lib/core/facets/binding/defined.rb +10 -0
- data/lib/core/facets/binding/eval.rb +10 -76
- data/lib/core/facets/binding/here.rb +9 -0
- data/lib/core/facets/binding/self.rb +10 -0
- data/lib/core/facets/binding/vars.rb +0 -45
- data/lib/core/facets/boolean.rb +31 -103
- data/lib/core/facets/class/descendents.rb +17 -44
- data/lib/core/facets/comparable/bound.rb +8 -70
- data/lib/core/facets/comparable/cmp.rb +12 -92
- data/lib/core/facets/conversion.rb +122 -321
- data/lib/core/facets/dir/multiglob.rb +0 -13
- data/lib/core/facets/dir/traverse.rb +61 -111
- data/lib/core/facets/enumerable.rb +4 -2
- data/lib/core/facets/enumerable/cartesian.rb +36 -85
- data/lib/core/facets/enumerable/collect.rb +64 -152
- data/lib/core/facets/enumerable/combination.rb +40 -42
- data/lib/core/facets/enumerable/count.rb +99 -174
- data/lib/core/facets/enumerable/each.rb +86 -0
- data/lib/core/facets/enumerable/mash.rb +58 -0
- data/lib/core/facets/enumerable/permutation.rb +39 -44
- data/lib/core/facets/enumerable/probability.rb +16 -90
- data/lib/core/facets/enumerable/split.rb +113 -0
- data/lib/core/facets/exception/detail.rb +1 -2
- data/lib/core/facets/facets.rb +3 -2
- data/lib/core/facets/file/read.rb +4 -59
- data/lib/core/facets/file/topath.rb +8 -96
- data/lib/core/facets/file/write.rb +21 -49
- data/lib/core/facets/filetest/root.rb +4 -3
- data/lib/core/facets/functor.rb +5 -43
- data/lib/core/facets/hash/at.rb +7 -37
- data/lib/core/facets/hash/delete.rb +9 -58
- data/lib/core/facets/hash/has_keys.rb +4 -43
- data/lib/core/facets/hash/insert.rb +5 -38
- data/lib/core/facets/hash/inverse.rb +2 -41
- data/lib/core/facets/hash/iterate.rb +4 -45
- data/lib/core/facets/hash/keyize.rb +24 -92
- data/lib/core/facets/hash/merge.rb +4 -38
- data/lib/core/facets/hash/new.rb +5 -38
- data/lib/core/facets/hash/op.rb +20 -66
- data/lib/core/facets/hash/rekey.rb +9 -87
- data/lib/core/facets/hash/select.rb +1 -1
- data/lib/core/facets/hash/slice.rb +42 -0
- data/lib/core/facets/hash/traverse.rb +6 -46
- data/lib/core/facets/hash/update.rb +27 -67
- data/lib/core/facets/hash/weave.rb +22 -42
- data/lib/core/facets/indexable.rb +42 -14
- data/lib/core/facets/integer/bitmask.rb +69 -106
- data/lib/core/facets/integer/factorial.rb +1 -44
- data/lib/core/facets/integer/multiples.rb +27 -22
- data/lib/core/facets/integer/of.rb +1 -33
- data/lib/core/facets/kernel.rb +4 -2
- data/lib/core/facets/kernel/ask.rb +15 -3
- data/lib/core/facets/kernel/callstack.rb +38 -69
- data/lib/core/facets/kernel/constant.rb +2 -38
- data/lib/core/facets/kernel/deepcopy.rb +3 -55
- data/lib/core/facets/kernel/dir.rb +2 -0
- data/lib/core/facets/kernel/ergo.rb +2 -2
- data/lib/core/facets/kernel/instance.rb +51 -120
- data/lib/core/facets/kernel/metaid.rb +35 -73
- data/lib/core/facets/kernel/object.rb +14 -39
- data/lib/core/facets/kernel/op_esc.rb +24 -2
- data/lib/core/facets/kernel/populate.rb +6 -69
- data/lib/core/facets/kernel/report.rb +28 -33
- data/lib/core/facets/kernel/require.rb +7 -21
- data/lib/core/facets/kernel/respond.rb +11 -1
- data/lib/core/facets/kernel/returning.rb +50 -0
- data/lib/core/facets/kernel/silence.rb +12 -24
- data/lib/core/facets/kernel/super.rb +12 -76
- data/lib/core/facets/kernel/tap.rb +25 -107
- data/lib/core/facets/kernel/val.rb +7 -46
- data/lib/core/facets/kernel/withattr.rb +6 -64
- data/lib/core/facets/matchdata/matchset.rb +8 -50
- data/lib/core/facets/module.rb +3 -1
- data/lib/core/facets/module/abstract.rb +9 -47
- data/lib/core/facets/module/alias.rb +11 -68
- data/lib/core/facets/module/attr.rb +36 -15
- data/lib/core/facets/module/cattr.rb +8 -76
- data/lib/core/facets/module/clone.rb +15 -66
- data/lib/core/facets/module/include.rb +54 -114
- data/lib/core/facets/module/methods.rb +15 -13
- data/lib/core/facets/module/modify.rb +20 -206
- data/lib/core/facets/module/name.rb +19 -83
- data/lib/core/facets/module/require.rb +48 -53
- data/lib/core/facets/module/traits.rb +74 -33
- data/lib/core/facets/nilclass/status.rb +25 -2
- data/lib/core/facets/numeric/round.rb +24 -89
- data/lib/core/facets/proc/bind.rb +16 -59
- data/lib/core/facets/proc/compose.rb +6 -40
- data/lib/core/facets/proc/fn.rb +2 -0
- data/lib/core/facets/range/combine.rb +15 -51
- data/lib/core/facets/range/overlap.rb +8 -64
- data/lib/core/facets/regexp/arity.rb +6 -41
- data/lib/core/facets/stackable.rb +43 -4
- data/lib/core/facets/string.rb +2 -0
- data/lib/core/facets/string/align.rb +45 -55
- data/lib/core/facets/string/blank.rb +2 -46
- data/lib/core/facets/string/bracket.rb +14 -87
- data/lib/core/facets/string/case.rb +45 -32
- data/lib/core/facets/string/crypt.rb +3 -40
- data/lib/core/facets/string/filter.rb +7 -49
- data/lib/core/facets/string/format.rb +24 -126
- data/lib/core/facets/string/indexable.rb +50 -133
- data/lib/core/facets/string/interpolate.rb +24 -59
- data/lib/core/facets/string/natcmp.rb +5 -39
- data/lib/core/facets/string/nchar.rb +37 -45
- data/lib/core/facets/string/op.rb +13 -0
- data/lib/core/facets/string/partitions.rb +38 -99
- data/lib/core/facets/string/range.rb +8 -49
- data/lib/core/facets/string/regesc.rb +9 -42
- data/lib/core/facets/string/scan.rb +6 -52
- data/lib/core/facets/string/splice.rb +8 -13
- data/lib/core/facets/string/tabs.rb +16 -153
- data/lib/core/facets/symbol.rb +3 -1
- data/lib/core/facets/symbol/chomp.rb +11 -29
- data/lib/core/facets/symbol/generate.rb +4 -43
- data/lib/core/facets/symbol/not.rb +13 -25
- data/lib/core/facets/symbol/shadow.rb +2 -40
- data/lib/core/facets/symbol/succ.rb +14 -13
- data/lib/core/facets/symbol/to_proc.rb +33 -28
- data/lib/core/facets/time.rb +1 -0
- data/lib/core/facets/time/change.rb +5 -38
- data/lib/core/facets/time/elapse.rb +2 -41
- data/lib/core/facets/time/stamp.rb +47 -0
- data/lib/core/facets/unboundmethod.rb +3 -0
- data/lib/core/facets/unboundmethod/arguments.rb +27 -4
- data/lib/core/facets/unboundmethod/name.rb +21 -7
- data/lib/methods/facets/enumerable/cluster_by.rb +1 -1
- data/lib/methods/facets/enumerable/collate.rb +1 -0
- data/lib/methods/facets/enumerable/divide.rb +1 -1
- data/lib/methods/facets/enumerable/each_by.rb +1 -1
- data/lib/methods/facets/enumerable/each_pair.rb +1 -1
- data/lib/methods/facets/enumerable/eachn.rb +1 -1
- data/lib/methods/facets/enumerable/graph.rb +1 -1
- data/lib/methods/facets/enumerable/group_by.rb +1 -1
- data/lib/methods/facets/enumerable/inject.rb +1 -0
- data/lib/methods/facets/enumerable/map_send.rb +1 -0
- data/lib/methods/facets/enumerable/modulate.rb +1 -0
- data/lib/methods/facets/enumerable/partition_by.rb +1 -1
- data/lib/methods/facets/hash/collate.rb +1 -1
- data/lib/methods/facets/hash/except.rb +1 -0
- data/lib/methods/facets/hash/graph.rb +1 -1
- data/lib/methods/facets/hash/mash.rb +1 -0
- data/lib/methods/facets/kernel/Bit.rb +1 -0
- data/lib/methods/facets/kernel/complete.rb +1 -1
- data/lib/methods/facets/kernel/here.rb +1 -1
- data/lib/methods/facets/kernel/non_nil.rb +1 -0
- data/lib/methods/facets/kernel/respond_with_value.rb +1 -0
- data/lib/methods/facets/kernel/with.rb +1 -1
- data/lib/methods/facets/module/class_def.rb +1 -0
- data/lib/methods/facets/string/camelcase.rb +1 -0
- data/lib/methods/facets/string/op_minus.rb +1 -0
- data/lib/methods/facets/string/snakecase.rb +1 -0
- data/lib/more/facets/attributes.rb +5 -5
- data/lib/more/facets/basicobject.rb +0 -62
- data/lib/{core/facets/continuation/create.rb → more/facets/continuation.rb} +4 -21
- data/lib/more/facets/duration.rb +534 -0
- data/lib/more/facets/lazy.rb +3 -3
- data/lib/more/facets/namespace.rb +23 -71
- data/lib/more/facets/rbsystem.rb +42 -8
- data/lib/more/facets/stylize.rb +6 -3
- data/lib/more/facets/thread.rb +55 -0
- data/meta/MANIFEST +49 -18
- data/meta/ROLLRC +1 -1
- data/meta/project.yaml +2 -2
- data/task/install +1 -1
- data/task/test/general +8 -2
- data/test/unit/array/test_pad.rb +30 -45
- data/test/unit/array/test_stackable.rb +14 -28
- data/test/unit/binding/test_cflow.rb +34 -49
- data/test/unit/binding/test_defined.rb +17 -0
- data/test/unit/binding/test_eval.rb +11 -39
- data/test/unit/binding/test_here.rb +17 -0
- data/test/unit/binding/test_self.rb +17 -0
- data/test/unit/binding/test_vars.rb +22 -37
- data/test/unit/class/test_descendents.rb +15 -30
- data/test/unit/class/test_initializer.rb +1 -8
- data/test/unit/comparable/test_bound.rb +38 -53
- data/test/unit/comparable/test_cmp.rb +45 -60
- data/test/unit/dir/test_traverse.rb +56 -0
- data/test/unit/enumerable/test_cartesian.rb +34 -47
- data/test/unit/enumerable/test_collect.rb +16 -125
- data/test/unit/enumerable/test_combination.rb +1 -8
- data/test/unit/enumerable/test_count.rb +51 -66
- data/test/unit/enumerable/test_each.rb +77 -0
- data/test/unit/enumerable/test_mash.rb +51 -0
- data/test/unit/enumerable/test_permutation.rb +1 -7
- data/test/unit/enumerable/test_probability.rb +42 -55
- data/test/unit/enumerable/test_split.rb +52 -0
- data/test/unit/exception/test_detail.rb +19 -0
- data/test/unit/file/test_read.rb +34 -0
- data/test/unit/file/test_topath.rb +17 -25
- data/test/unit/file/test_write.rb +6 -12
- data/test/unit/filetest/test_root.rb +14 -0
- data/test/unit/hash/test_at.rb +9 -21
- data/test/unit/hash/test_delete.rb +22 -37
- data/test/unit/hash/test_has_keys.rb +13 -28
- data/test/unit/hash/test_insert.rb +9 -23
- data/test/unit/hash/test_inverse.rb +11 -26
- data/test/unit/hash/test_iterate.rb +16 -31
- data/test/unit/hash/test_keyize.rb +40 -55
- data/test/unit/hash/test_merge.rb +10 -25
- data/test/unit/hash/test_new.rb +9 -24
- data/test/unit/hash/test_op.rb +1 -7
- data/test/unit/hash/test_rekey.rb +47 -62
- data/test/unit/hash/test_traverse.rb +17 -32
- data/test/unit/hash/test_update.rb +30 -45
- data/test/unit/hash/test_weave.rb +10 -23
- data/test/unit/integer/test_bitmask.rb +48 -44
- data/test/unit/integer/test_factorial.rb +11 -26
- data/test/unit/integer/test_multiples.rb +1 -5
- data/test/unit/integer/test_of.rb +14 -29
- data/test/unit/kernel/test_callstack.rb +13 -28
- data/test/unit/kernel/test_constant.rb +14 -28
- data/test/unit/kernel/test_deepcopy.rb +20 -35
- data/test/unit/kernel/test_instance.rb +46 -61
- data/test/unit/kernel/test_metaid.rb +42 -57
- data/test/unit/kernel/test_object.rb +14 -29
- data/test/unit/kernel/test_populate.rb +38 -53
- data/test/unit/kernel/test_report.rb +1 -7
- data/test/unit/kernel/test_returning.rb +16 -0
- data/test/unit/kernel/test_silence.rb +8 -23
- data/test/unit/kernel/test_super.rb +41 -56
- data/test/unit/kernel/test_tap.rb +15 -39
- data/test/unit/kernel/test_val.rb +7 -20
- data/test/unit/kernel/test_withattr.rb +29 -44
- data/test/unit/matchdata/test_matchset.rb +20 -35
- data/test/unit/module/test_abstract.rb +15 -30
- data/test/unit/module/test_alias.rb +32 -45
- data/test/unit/module/test_cattr.rb +39 -54
- data/test/unit/module/test_clone.rb +31 -43
- data/test/unit/module/test_include.rb +1 -35
- data/test/unit/module/test_modify.rb +102 -114
- data/test/unit/module/test_name.rb +1 -7
- data/test/unit/numeric/test_round.rb +46 -61
- data/test/unit/proc/test_bind.rb +29 -44
- data/test/unit/proc/test_compose.rb +20 -35
- data/test/unit/range/test_combine.rb +14 -29
- data/test/unit/range/test_overlap.rb +34 -51
- data/test/unit/regexp/test_arity.rb +14 -29
- data/test/unit/string/test_align.rb +13 -27
- data/test/unit/string/test_blank.rb +12 -27
- data/test/unit/string/test_bracket.rb +52 -67
- data/test/unit/string/test_case.rb +19 -38
- data/test/unit/string/test_crypt.rb +10 -25
- data/test/unit/string/test_filter.rb +1 -7
- data/test/unit/string/test_format.rb +2 -7
- data/test/unit/string/test_indexable.rb +54 -69
- data/test/unit/string/test_interpolate.rb +8 -21
- data/test/unit/string/test_natcmp.rb +11 -26
- data/test/unit/string/test_nchar.rb +1 -14
- data/test/unit/string/test_op.rb +14 -0
- data/test/unit/string/test_partitions.rb +39 -54
- data/test/unit/string/test_range.rb +17 -32
- data/test/unit/string/test_regesc.rb +1 -7
- data/test/unit/string/test_scan.rb +23 -38
- data/test/unit/string/test_stackable.rb +79 -98
- data/test/unit/string/test_tabs.rb +1 -7
- data/test/unit/symbol/test_chomp.rb +10 -21
- data/test/unit/symbol/test_generate.rb +7 -22
- data/test/unit/symbol/test_not.rb +10 -25
- data/test/unit/symbol/test_shadow.rb +8 -23
- data/test/unit/symbol/test_succ.rb +1 -7
- data/test/unit/symbol/test_to_proc.rb +1 -7
- data/test/unit/test_attributes.rb +1 -1
- data/test/unit/test_continuation.rb +13 -0
- data/test/unit/test_conversion.rb +1 -14
- data/test/unit/test_namespace.rb +30 -3
- data/test/unit/test_thread.rb +23 -0
- data/test/unit/time/test_change.rb +11 -26
- data/test/unit/time/test_elapse.rb +10 -25
- data/test/unit/time/test_stamp.rb +28 -0
- metadata +65 -25
- data/lib/core/facets/array/unzip.rb +0 -14
- data/lib/core/facets/continuation.rb +0 -1
- data/lib/core/facets/enumerable/collate.rb +0 -104
- data/lib/core/facets/kernel/require_esc.rb +0 -44
- data/lib/more/facets/mapsend.rb +0 -98
- data/lib/more/facets/pp_s.rb +0 -30
- data/log/history.rd +0 -38
- data/log/todo.rd +0 -4
- data/task/special/quickopts +0 -15
- data/test/unit/continuation/test_create.rb +0 -28
- data/test/unit/enumerable/test_collate.rb +0 -51
- data/test/unit/kernel/test_require_esc.rb +0 -29
- data/test/unit/test_mapsend.rb +0 -18
- data/test/unit/test_pp_s.rb +0 -17
@@ -1,12 +1,7 @@
|
|
1
|
-
#
|
2
|
-
# |_ _|__ ___| |_
|
3
|
-
# | |/ _ \/ __| __|
|
4
|
-
# | | __/\__ \ |
|
5
|
-
# |_|\___||___/\__|
|
6
|
-
#
|
7
|
-
# for facets/kernel/val.rb
|
1
|
+
# Test for facets/kernel/val
|
8
2
|
|
9
3
|
require 'facets/kernel/val.rb'
|
4
|
+
|
10
5
|
require 'test/unit'
|
11
6
|
|
12
7
|
class TestKernelVal < Test::Unit::TestCase
|
@@ -37,19 +32,11 @@ class TestKernelVal < Test::Unit::TestCase
|
|
37
32
|
assert( 5.in?([1,2,3,4,5]) )
|
38
33
|
end
|
39
34
|
|
40
|
-
def
|
41
|
-
assert_equal(true, 5.
|
42
|
-
assert_equal(true, :x.
|
43
|
-
assert_equal(false, nil.
|
44
|
-
assert_equal(true, false.
|
35
|
+
def test_non_nil?
|
36
|
+
assert_equal(true, 5.non_nil?)
|
37
|
+
assert_equal(true, :x.non_nil?)
|
38
|
+
assert_equal(false, nil.non_nil?)
|
39
|
+
assert_equal(true, false.non_nil?)
|
45
40
|
end
|
46
41
|
|
47
|
-
#def test_non_nil?
|
48
|
-
# assert_equal(true, 5.non_nil?)
|
49
|
-
# assert_equal(true, :x.non_nil?)
|
50
|
-
# assert_equal(false, nil.non_nil?)
|
51
|
-
# assert_equal(true, false.non_nil?)
|
52
|
-
#end
|
53
|
-
|
54
42
|
end
|
55
|
-
|
@@ -1,53 +1,38 @@
|
|
1
|
-
|
2
|
-
# |_ _|__ ___| |_
|
3
|
-
# | |/ _ \/ __| __|
|
4
|
-
# | | __/\__ \ |
|
5
|
-
# |_|\___||___/\__|
|
6
|
-
#
|
7
|
-
# for lib/facets/kernel/withattr.rb
|
8
|
-
#
|
9
|
-
# Extracted Mon Sep 03 16:23:07 -0700 2007
|
10
|
-
# w/ Test Extraction Ratchet
|
11
|
-
#
|
1
|
+
# Test for facets/kernel/withattr
|
12
2
|
|
13
|
-
|
3
|
+
require 'facets/kernel/withattr.rb'
|
14
4
|
|
5
|
+
require 'test/unit'
|
15
6
|
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
with_reader :foo => "FOO"
|
24
|
-
with_writer :bar => "BAR"
|
25
|
-
with_accessor :baz => "BAZ"
|
26
|
-
end
|
27
|
-
def get_bar
|
28
|
-
@bar
|
29
|
-
end
|
30
|
-
end
|
31
|
-
|
32
|
-
def test_with_reader
|
33
|
-
assert_nothing_raised { @t = TestWith.new }
|
34
|
-
assert_equal("FOO", @t.foo)
|
35
|
-
end
|
36
|
-
|
37
|
-
def test_with_writer
|
38
|
-
assert_nothing_raised { @t = TestWith.new }
|
39
|
-
assert_equal("BAR", @t.get_bar)
|
40
|
-
@t.bar = "BAR2"
|
41
|
-
assert_equal("BAR2", @t.get_bar)
|
7
|
+
class TCKernel < Test::Unit::TestCase
|
8
|
+
# fixture for #with_reader, #with_writer and #with_accessor
|
9
|
+
class TestWith
|
10
|
+
def initialize
|
11
|
+
with_reader :foo => "FOO"
|
12
|
+
with_writer :bar => "BAR"
|
13
|
+
with_accessor :baz => "BAZ"
|
42
14
|
end
|
43
|
-
|
44
|
-
|
45
|
-
assert_nothing_raised { @t = TestWith.new }
|
46
|
-
assert_equal("BAZ", @t.baz)
|
47
|
-
@t.baz = "BAZ2"
|
48
|
-
assert_equal("BAZ2", @t.baz)
|
15
|
+
def get_bar
|
16
|
+
@bar
|
49
17
|
end
|
50
18
|
end
|
51
19
|
|
20
|
+
def test_with_reader
|
21
|
+
assert_nothing_raised { @t = TestWith.new }
|
22
|
+
assert_equal("FOO", @t.foo)
|
23
|
+
end
|
52
24
|
|
25
|
+
def test_with_writer
|
26
|
+
assert_nothing_raised { @t = TestWith.new }
|
27
|
+
assert_equal("BAR", @t.get_bar)
|
28
|
+
@t.bar = "BAR2"
|
29
|
+
assert_equal("BAR2", @t.get_bar)
|
30
|
+
end
|
53
31
|
|
32
|
+
def test_with_accessor
|
33
|
+
assert_nothing_raised { @t = TestWith.new }
|
34
|
+
assert_equal("BAZ", @t.baz)
|
35
|
+
@t.baz = "BAZ2"
|
36
|
+
assert_equal("BAZ2", @t.baz)
|
37
|
+
end
|
38
|
+
end
|
@@ -1,44 +1,29 @@
|
|
1
|
-
|
2
|
-
# |_ _|__ ___| |_
|
3
|
-
# | |/ _ \/ __| __|
|
4
|
-
# | | __/\__ \ |
|
5
|
-
# |_|\___||___/\__|
|
6
|
-
#
|
7
|
-
# for lib/facets/matchdata/matchset.rb
|
8
|
-
#
|
9
|
-
# Extracted Mon Sep 03 16:23:07 -0700 2007
|
10
|
-
# w/ Test Extraction Ratchet
|
11
|
-
#
|
1
|
+
# Test for lib/facets/matchdata/matchset
|
12
2
|
|
13
|
-
|
3
|
+
require 'facets/matchdata/matchset.rb'
|
14
4
|
|
5
|
+
require 'test/unit'
|
15
6
|
|
7
|
+
class TestMatchData < Test::Unit::TestCase
|
16
8
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
def test_match
|
22
|
-
md = /X(a)(b)(c)X/.match("YXabcXY")
|
23
|
-
assert_equal( "XabcX", md.match )
|
24
|
-
end
|
25
|
-
|
26
|
-
def test_matchtree_01
|
27
|
-
md = /(bb)(cc(dd))(ee)/.match "XXaabbccddeeffXX"
|
28
|
-
assert_equal( [["bb"], ["cc", ["dd"]], ["ee"]] , md.matchtree )
|
29
|
-
end
|
30
|
-
|
31
|
-
def test_matchtree_02
|
32
|
-
md = /(bb)c(c(dd))(ee)/.match "XXaabbccddeeffXX"
|
33
|
-
assert_equal( [["bb"], "c", ["c", ["dd"]], ["ee"]] , md.matchtree )
|
34
|
-
end
|
35
|
-
|
36
|
-
def test_matchset
|
37
|
-
md = /(bb)(cc(dd))(ee)/.match "XXaabbccddeeffXX"
|
38
|
-
assert_equal( ["XXaa", [["bb"], ["cc", ["dd"]], ["ee"]], "ffXX"] , md.matchset )
|
39
|
-
end
|
9
|
+
def test_match
|
10
|
+
md = /X(a)(b)(c)X/.match("YXabcXY")
|
11
|
+
assert_equal( "XabcX", md.match )
|
12
|
+
end
|
40
13
|
|
14
|
+
def test_matchtree_01
|
15
|
+
md = /(bb)(cc(dd))(ee)/.match "XXaabbccddeeffXX"
|
16
|
+
assert_equal( [["bb"], ["cc", ["dd"]], ["ee"]] , md.matchtree )
|
41
17
|
end
|
42
18
|
|
19
|
+
def test_matchtree_02
|
20
|
+
md = /(bb)c(c(dd))(ee)/.match "XXaabbccddeeffXX"
|
21
|
+
assert_equal( [["bb"], "c", ["c", ["dd"]], ["ee"]] , md.matchtree )
|
22
|
+
end
|
43
23
|
|
24
|
+
def test_matchset
|
25
|
+
md = /(bb)(cc(dd))(ee)/.match "XXaabbccddeeffXX"
|
26
|
+
assert_equal( ["XXaa", [["bb"], ["cc", ["dd"]], ["ee"]], "ffXX"] , md.matchset )
|
27
|
+
end
|
44
28
|
|
29
|
+
end
|
@@ -1,38 +1,23 @@
|
|
1
|
-
|
2
|
-
# |_ _|__ ___| |_
|
3
|
-
# | |/ _ \/ __| __|
|
4
|
-
# | | __/\__ \ |
|
5
|
-
# |_|\___||___/\__|
|
6
|
-
#
|
7
|
-
# for lib/facets/module/abstract.rb
|
8
|
-
#
|
9
|
-
# Extracted Mon Sep 03 16:23:07 -0700 2007
|
10
|
-
# w/ Test Extraction Ratchet
|
11
|
-
#
|
1
|
+
# Test for facets/module/abstract
|
12
2
|
|
13
|
-
|
3
|
+
require 'facets/module/abstract.rb'
|
14
4
|
|
5
|
+
require 'test/unit'
|
15
6
|
|
7
|
+
class TestAttrTester < Test::Unit::TestCase
|
16
8
|
|
17
|
-
|
18
|
-
|
19
|
-
class TestAttrTester < Test::Unit::TestCase
|
20
|
-
|
21
|
-
class Aq
|
22
|
-
abstract :q
|
23
|
-
end
|
24
|
-
|
25
|
-
def test_abstract_01
|
26
|
-
ac = Aq.new
|
27
|
-
assert_raises( TypeError ) { ac.q }
|
28
|
-
end
|
29
|
-
|
30
|
-
def test_abstract_02
|
31
|
-
ac = Class.new { abstract :q }.new
|
32
|
-
assert_raises( TypeError ) { ac.q }
|
33
|
-
end
|
34
|
-
|
9
|
+
class Aq
|
10
|
+
abstract :q
|
35
11
|
end
|
36
12
|
|
13
|
+
def test_abstract_01
|
14
|
+
ac = Aq.new
|
15
|
+
assert_raises( TypeError ) { ac.q }
|
16
|
+
end
|
37
17
|
|
18
|
+
def test_abstract_02
|
19
|
+
ac = Class.new { abstract :q }.new
|
20
|
+
assert_raises( TypeError ) { ac.q }
|
21
|
+
end
|
38
22
|
|
23
|
+
end
|
@@ -1,60 +1,47 @@
|
|
1
|
-
|
2
|
-
# |_ _|__ ___| |_
|
3
|
-
# | |/ _ \/ __| __|
|
4
|
-
# | | __/\__ \ |
|
5
|
-
# |_|\___||___/\__|
|
6
|
-
#
|
7
|
-
# for lib/facets/module/alias.rb
|
8
|
-
#
|
9
|
-
# Extracted Mon Sep 03 16:23:07 -0700 2007
|
10
|
-
# w/ Test Extraction Ratchet
|
11
|
-
#
|
1
|
+
# Test for facets/module/alias
|
12
2
|
|
13
|
-
|
3
|
+
require 'facets/module/alias.rb'
|
14
4
|
|
5
|
+
require 'test/unit'
|
15
6
|
|
7
|
+
class TC_Module < Test::Unit::TestCase
|
16
8
|
|
17
|
-
|
9
|
+
module MockModule
|
10
|
+
# for alias_module_method
|
11
|
+
def x ; 33 ; end
|
12
|
+
module_function :x
|
13
|
+
alias_module_function :y, :x
|
14
|
+
end
|
18
15
|
|
19
|
-
|
16
|
+
def test_alias_module_function
|
17
|
+
assert_equal( 33, MockModule.y )
|
18
|
+
#assert_equal( 33, @m.send(:y) ) # use send b/c private
|
19
|
+
end
|
20
20
|
|
21
|
-
module MockModule
|
22
|
-
# for alias_module_method
|
23
|
-
def x ; 33 ; end
|
24
|
-
module_function :x
|
25
|
-
alias_module_function :y, :x
|
26
|
-
end
|
27
21
|
|
28
|
-
|
29
|
-
|
30
|
-
|
22
|
+
module X
|
23
|
+
def self.included(base)
|
24
|
+
base.module_eval {
|
25
|
+
alias_method_chain :foo, :feature
|
26
|
+
}
|
31
27
|
end
|
32
|
-
|
33
|
-
|
34
|
-
def self.included(base)
|
35
|
-
base.module_eval {
|
36
|
-
alias_method_chain :foo, :feature
|
37
|
-
}
|
38
|
-
end
|
39
|
-
def foo_with_feature
|
40
|
-
foo_without_feature + '!'
|
41
|
-
end
|
42
|
-
end
|
43
|
-
|
44
|
-
class Y
|
45
|
-
def foo
|
46
|
-
"FOO"
|
47
|
-
end
|
48
|
-
include X
|
49
|
-
#alias_method_chain :foo, :feature
|
28
|
+
def foo_with_feature
|
29
|
+
foo_without_feature + '!'
|
50
30
|
end
|
31
|
+
end
|
51
32
|
|
52
|
-
|
53
|
-
|
54
|
-
|
33
|
+
class Y
|
34
|
+
def foo
|
35
|
+
"FOO"
|
55
36
|
end
|
56
|
-
|
37
|
+
include X
|
38
|
+
#alias_method_chain :foo, :feature
|
57
39
|
end
|
58
40
|
|
59
41
|
|
42
|
+
def test_001
|
43
|
+
y = Y.new
|
44
|
+
assert_equal( "FOO!", y.foo )
|
45
|
+
end
|
60
46
|
|
47
|
+
end
|
@@ -1,65 +1,50 @@
|
|
1
|
-
|
2
|
-
# |_ _|__ ___| |_
|
3
|
-
# | |/ _ \/ __| __|
|
4
|
-
# | | __/\__ \ |
|
5
|
-
# |_|\___||___/\__|
|
6
|
-
#
|
7
|
-
# for lib/facets/module/cattr.rb
|
8
|
-
#
|
9
|
-
# Extracted Mon Sep 03 16:23:07 -0700 2007
|
10
|
-
# w/ Test Extraction Ratchet
|
11
|
-
#
|
1
|
+
# Test for facets/module/cattr
|
12
2
|
|
13
|
-
|
3
|
+
require 'facets/module/cattr.rb'
|
14
4
|
|
5
|
+
require 'test/unit'
|
15
6
|
|
7
|
+
class TCModule < Test::Unit::TestCase
|
16
8
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
class MockObject
|
22
|
-
def initialize
|
23
|
-
@@a = 10
|
24
|
-
end
|
25
|
-
def b ; @@b ; end
|
26
|
-
end
|
27
|
-
|
28
|
-
def test_cattr
|
29
|
-
assert_nothing_raised {
|
30
|
-
MockObject.class_eval { cattr :a }
|
31
|
-
}
|
32
|
-
t = MockObject.new
|
33
|
-
assert_equal( 10, t.a )
|
34
|
-
end
|
35
|
-
|
36
|
-
def test_cattr_reader
|
37
|
-
assert_nothing_raised {
|
38
|
-
MockObject.class_eval { cattr_reader :a }
|
39
|
-
}
|
40
|
-
t = MockObject.new
|
41
|
-
assert_equal( 10, t.a )
|
42
|
-
end
|
43
|
-
|
44
|
-
def test_cattr_writer
|
45
|
-
assert_nothing_raised {
|
46
|
-
MockObject.class_eval { cattr_writer :b }
|
47
|
-
}
|
48
|
-
t = MockObject.new
|
49
|
-
t.b = 5
|
50
|
-
assert_equal( 5, t.b )
|
9
|
+
class MockObject
|
10
|
+
def initialize
|
11
|
+
@@a = 10
|
51
12
|
end
|
13
|
+
def b ; @@b ; end
|
14
|
+
end
|
52
15
|
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
end
|
16
|
+
def test_cattr
|
17
|
+
assert_nothing_raised {
|
18
|
+
MockObject.class_eval { cattr :a }
|
19
|
+
}
|
20
|
+
t = MockObject.new
|
21
|
+
assert_equal( 10, t.a )
|
22
|
+
end
|
61
23
|
|
24
|
+
def test_cattr_reader
|
25
|
+
assert_nothing_raised {
|
26
|
+
MockObject.class_eval { cattr_reader :a }
|
27
|
+
}
|
28
|
+
t = MockObject.new
|
29
|
+
assert_equal( 10, t.a )
|
62
30
|
end
|
63
31
|
|
32
|
+
def test_cattr_writer
|
33
|
+
assert_nothing_raised {
|
34
|
+
MockObject.class_eval { cattr_writer :b }
|
35
|
+
}
|
36
|
+
t = MockObject.new
|
37
|
+
t.b = 5
|
38
|
+
assert_equal( 5, t.b )
|
39
|
+
end
|
64
40
|
|
41
|
+
def test_cattr_accessor
|
42
|
+
assert_nothing_raised {
|
43
|
+
MockObject.class_eval { cattr_accessor :c }
|
44
|
+
}
|
45
|
+
t = MockObject.new
|
46
|
+
t.c = 50
|
47
|
+
assert_equal( 50, t.c )
|
48
|
+
end
|
65
49
|
|
50
|
+
end
|
@@ -1,57 +1,45 @@
|
|
1
|
-
|
2
|
-
# |_ _|__ ___| |_
|
3
|
-
# | |/ _ \/ __| __|
|
4
|
-
# | | __/\__ \ |
|
5
|
-
# |_|\___||___/\__|
|
6
|
-
#
|
7
|
-
# for lib/facets/module/clone.rb
|
8
|
-
#
|
9
|
-
# Extracted Mon Sep 03 16:23:07 -0700 2007
|
10
|
-
# w/ Test Extraction Ratchet
|
11
|
-
#
|
1
|
+
# Test for facets/module/clone.rb
|
12
2
|
|
13
|
-
|
3
|
+
require 'facets/module/clone.rb'
|
14
4
|
|
5
|
+
require 'test/unit'
|
15
6
|
|
7
|
+
class TestModuleClone < Test::Unit::TestCase
|
16
8
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
module M
|
22
|
-
def f; 1; end
|
23
|
-
def g; 2; end
|
24
|
-
end
|
25
|
-
|
26
|
-
class Remove
|
27
|
-
include M.clone_removing( :g )
|
28
|
-
end
|
9
|
+
module M
|
10
|
+
def f; 1; end
|
11
|
+
def g; 2; end
|
12
|
+
end
|
29
13
|
|
30
|
-
|
31
|
-
|
32
|
-
|
14
|
+
class Remove
|
15
|
+
include M.clone_removing( :g )
|
16
|
+
end
|
33
17
|
|
34
|
-
|
35
|
-
|
36
|
-
|
18
|
+
class Rename
|
19
|
+
include M.clone_renaming( :q => :g )
|
20
|
+
end
|
37
21
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
end
|
22
|
+
class Use
|
23
|
+
include M.clone_using( :f )
|
24
|
+
end
|
42
25
|
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
end
|
26
|
+
def test_removing
|
27
|
+
assert( Remove.method_defined?(:f) )
|
28
|
+
assert( ! Remove.method_defined?(:g) )
|
29
|
+
end
|
48
30
|
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
31
|
+
def test_renaming
|
32
|
+
assert( ! Rename.method_defined?(:g) )
|
33
|
+
assert( Rename.method_defined?(:f) )
|
34
|
+
assert( Rename.method_defined?(:q) )
|
35
|
+
end
|
53
36
|
|
37
|
+
def test_using_2
|
38
|
+
assert( ! Use.method_defined?(:g) )
|
39
|
+
assert( Use.method_defined?(:f) )
|
54
40
|
end
|
55
41
|
|
42
|
+
end
|
43
|
+
|
56
44
|
|
57
45
|
|