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,29 +1,14 @@
|
|
1
|
-
|
2
|
-
# |_ _|__ ___| |_
|
3
|
-
# | |/ _ \/ __| __|
|
4
|
-
# | | __/\__ \ |
|
5
|
-
# |_|\___||___/\__|
|
6
|
-
#
|
7
|
-
# for lib/facets/symbol/shadow.rb
|
8
|
-
#
|
9
|
-
# Extracted Mon Sep 03 16:23:07 -0700 2007
|
10
|
-
# w/ Test Extraction Ratchet
|
11
|
-
#
|
1
|
+
# Test for facets/symbol/shadow
|
12
2
|
|
13
|
-
|
3
|
+
require 'facets/symbol/shadow.rb'
|
14
4
|
|
5
|
+
require 'test/unit'
|
15
6
|
|
7
|
+
class TestSymbol < Test::Unit::TestCase
|
16
8
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
def test_shadow
|
22
|
-
assert_equal( :__a__, :a.shadow(2) )
|
23
|
-
assert_equal( :_a_, :__a__.shadow(-1) )
|
24
|
-
end
|
25
|
-
|
9
|
+
def test_shadow
|
10
|
+
assert_equal( :__a__, :a.shadow(2) )
|
11
|
+
assert_equal( :_a_, :__a__.shadow(-1) )
|
26
12
|
end
|
27
13
|
|
28
|
-
|
29
|
-
|
14
|
+
end
|
@@ -191,20 +191,6 @@ class TestTimeConversion < Test::Unit::TestCase
|
|
191
191
|
@t = Time.parse('4/20/2005 15:37')
|
192
192
|
end
|
193
193
|
|
194
|
-
# TODO Problem with TIMEZONE.
|
195
|
-
|
196
|
-
#def test_stamp_01
|
197
|
-
# assert_equal( "Wed Apr 20 15:37:00 PDT 2005", @t.stamp )
|
198
|
-
#end
|
199
|
-
|
200
|
-
def test_stamp_02
|
201
|
-
assert_equal( "April 20, 2005 15:37", @t.stamp(:long) )
|
202
|
-
end
|
203
|
-
|
204
|
-
def test_stamp_03
|
205
|
-
assert_equal( "20 Apr 15:37", @t.stamp(:short) )
|
206
|
-
end
|
207
|
-
|
208
194
|
def test_to_date
|
209
195
|
assert_instance_of( ::Date, @t.to_date )
|
210
196
|
end
|
@@ -218,3 +204,4 @@ class TestTimeConversion < Test::Unit::TestCase
|
|
218
204
|
end
|
219
205
|
|
220
206
|
end
|
207
|
+
|
data/test/unit/test_namespace.rb
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
# Test facets/namespace.rb
|
2
2
|
|
3
|
-
require 'facets/namespace.rb'
|
3
|
+
require 'facets/namespace.rb' # to be renamed methodspace.rb (?)
|
4
4
|
require 'test/unit'
|
5
5
|
|
6
|
-
class
|
6
|
+
class TestSpaceWithModule < Test::Unit::TestCase
|
7
7
|
|
8
8
|
module M
|
9
9
|
def x; "x"; end
|
@@ -25,7 +25,7 @@ class TestNamespace1 < Test::Unit::TestCase
|
|
25
25
|
|
26
26
|
end
|
27
27
|
|
28
|
-
class
|
28
|
+
class TestSpaceWithBlock < Test::Unit::TestCase
|
29
29
|
|
30
30
|
class B
|
31
31
|
def x; 1; end
|
@@ -49,3 +49,30 @@ class TestNamespace2 < Test::Unit::TestCase
|
|
49
49
|
end
|
50
50
|
|
51
51
|
end
|
52
|
+
|
53
|
+
class TestIncludeAs < Test::Unit::TestCase
|
54
|
+
|
55
|
+
module MockModule
|
56
|
+
def x; "X"; end
|
57
|
+
def y; @y; end
|
58
|
+
end
|
59
|
+
|
60
|
+
class MockObject
|
61
|
+
include_as :mod => MockModule
|
62
|
+
|
63
|
+
def initialize
|
64
|
+
@y = "Y"
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
def test_01
|
69
|
+
m = MockObject.new
|
70
|
+
assert_equal( "X", m.mod.x )
|
71
|
+
end
|
72
|
+
|
73
|
+
def test_02
|
74
|
+
m = MockObject.new
|
75
|
+
assert_equal( "Y", m.mod.y )
|
76
|
+
end
|
77
|
+
|
78
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Test facets/thread.rb
|
2
|
+
|
3
|
+
require 'facets/thread.rb'
|
4
|
+
require 'test/unit'
|
5
|
+
|
6
|
+
class TC_Thread < Test::Unit::TestCase
|
7
|
+
|
8
|
+
def test_threaded_map
|
9
|
+
r = [1,2,3].threaded_map{ |e| e + 1 }
|
10
|
+
assert_equal(r, [2,3,4])
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_threaded_map_send
|
14
|
+
r = [1,2,3].threaded_map_send(:+, 1)
|
15
|
+
assert_equal(r, [2,3,4])
|
16
|
+
end
|
17
|
+
|
18
|
+
def test_map_send_with_block
|
19
|
+
r = [1,2,3].threaded_map_send(:+,1){ |x| x + 1 }
|
20
|
+
assert_equal(r, [3,4,5])
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
@@ -1,32 +1,17 @@
|
|
1
|
-
|
2
|
-
# |_ _|__ ___| |_
|
3
|
-
# | |/ _ \/ __| __|
|
4
|
-
# | | __/\__ \ |
|
5
|
-
# |_|\___||___/\__|
|
6
|
-
#
|
7
|
-
# for lib/facets/time/change.rb
|
8
|
-
#
|
9
|
-
# Extracted Mon Sep 03 16:23:07 -0700 2007
|
10
|
-
# w/ Test Extraction Ratchet
|
11
|
-
#
|
1
|
+
# Test for facets/time/change
|
12
2
|
|
13
|
-
|
3
|
+
require 'facets/time/change.rb'
|
14
4
|
|
5
|
+
require 'test/unit'
|
6
|
+
require 'time'
|
15
7
|
|
8
|
+
class TestTimeChange < Test::Unit::TestCase
|
16
9
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
def test_change
|
23
|
-
t = Time.parse('4/20/2006 15:37')
|
24
|
-
n = Time.now
|
25
|
-
n = n.change( :month=>4, :day=>20, :hour=>15, :min=>37, :year=>2006 )
|
26
|
-
assert_equal( t, n )
|
27
|
-
end
|
28
|
-
|
10
|
+
def test_change
|
11
|
+
t = Time.parse('4/20/2006 15:37')
|
12
|
+
n = Time.now
|
13
|
+
n = n.change( :month=>4, :day=>20, :hour=>15, :min=>37, :year=>2006 )
|
14
|
+
assert_equal( t, n )
|
29
15
|
end
|
30
16
|
|
31
|
-
|
32
|
-
|
17
|
+
end
|
@@ -1,31 +1,16 @@
|
|
1
|
-
|
2
|
-
# |_ _|__ ___| |_
|
3
|
-
# | |/ _ \/ __| __|
|
4
|
-
# | | __/\__ \ |
|
5
|
-
# |_|\___||___/\__|
|
6
|
-
#
|
7
|
-
# for lib/facets/time/elapse.rb
|
8
|
-
#
|
9
|
-
# Extracted Mon Sep 03 16:23:07 -0700 2007
|
10
|
-
# w/ Test Extraction Ratchet
|
11
|
-
#
|
1
|
+
# Test for facets/time/elapse
|
12
2
|
|
13
|
-
|
3
|
+
require 'facets/time/elapse.rb'
|
14
4
|
|
5
|
+
require 'test/unit'
|
6
|
+
#require 'time'
|
15
7
|
|
8
|
+
class TestTime < Test::Unit::TestCase
|
16
9
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
def test_elapse
|
23
|
-
#t = Time.parse('4/20/2006 15:37')
|
24
|
-
t = Time.elapse { sleep 1 }
|
25
|
-
assert( (t > 0.9) && (t < 2.1 ))
|
26
|
-
end
|
27
|
-
|
10
|
+
def test_elapse
|
11
|
+
#t = Time.parse('4/20/2006 15:37')
|
12
|
+
t = Time.elapse { sleep 1 }
|
13
|
+
assert( (t > 0.9) && (t < 2.1 ))
|
28
14
|
end
|
29
15
|
|
30
|
-
|
31
|
-
|
16
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# Test for facets/time/stamp
|
2
|
+
|
3
|
+
require 'facets/time/stamp.rb'
|
4
|
+
|
5
|
+
require 'test/unit'
|
6
|
+
require 'time'
|
7
|
+
|
8
|
+
class TC_Time_Stamp < Test::Unit::TestCase
|
9
|
+
|
10
|
+
def setup
|
11
|
+
@t = Time.parse('4/20/2005 15:37')
|
12
|
+
end
|
13
|
+
|
14
|
+
# TODO Problem with TIMEZONE.
|
15
|
+
|
16
|
+
#def test_stamp_01
|
17
|
+
# assert_equal( "Wed Apr 20 15:37:00 PDT 2005", @t.stamp )
|
18
|
+
#end
|
19
|
+
|
20
|
+
def test_stamp_02
|
21
|
+
assert_equal( "April 20, 2005 15:37", @t.stamp(:long) )
|
22
|
+
end
|
23
|
+
|
24
|
+
def test_stamp_03
|
25
|
+
assert_equal( "20 Apr 15:37", @t.stamp(:short) )
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
metadata
CHANGED
@@ -3,9 +3,9 @@ rubygems_version: 0.9.4.6
|
|
3
3
|
specification_version: 2
|
4
4
|
name: facets
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 2.
|
7
|
-
date: 2007-
|
8
|
-
summary:
|
6
|
+
version: 2.2.0
|
7
|
+
date: 2007-12-13 00:00:00 -05:00
|
8
|
+
summary: Premium Core Extensions and Standard Additions
|
9
9
|
require_paths:
|
10
10
|
- lib/methods
|
11
11
|
- lib/more
|
@@ -40,8 +40,6 @@ authors:
|
|
40
40
|
- Thomas Sawyer <transfire@gmail.com>
|
41
41
|
files:
|
42
42
|
- log
|
43
|
-
- log/history.rd
|
44
|
-
- log/todo.rd
|
45
43
|
- log/changelog.txt
|
46
44
|
- task
|
47
45
|
- task/changes
|
@@ -64,8 +62,6 @@ files:
|
|
64
62
|
- task/release
|
65
63
|
- task/clobber
|
66
64
|
- task/clobber/package
|
67
|
-
- task/special
|
68
|
-
- task/special/quickopts
|
69
65
|
- demo
|
70
66
|
- demo/sample
|
71
67
|
- demo/sample/annotations
|
@@ -114,7 +110,7 @@ files:
|
|
114
110
|
- lib/more/facets/interval.rb
|
115
111
|
- lib/more/facets/lazy.rb
|
116
112
|
- lib/more/facets/let.rb
|
117
|
-
- lib/more/facets/
|
113
|
+
- lib/more/facets/duration.rb
|
118
114
|
- lib/more/facets/minitar.rb
|
119
115
|
- lib/more/facets/main.rb
|
120
116
|
- lib/more/facets/paramix.rb
|
@@ -194,7 +190,8 @@ files:
|
|
194
190
|
- lib/more/facets/pathname.rb
|
195
191
|
- lib/more/facets/rbsystem.rb
|
196
192
|
- lib/more/facets/curry.rb
|
197
|
-
- lib/more/facets/
|
193
|
+
- lib/more/facets/continuation.rb
|
194
|
+
- lib/more/facets/thread.rb
|
198
195
|
- lib/core/facets
|
199
196
|
- lib/core/facets/array
|
200
197
|
- lib/core/facets/array/only.rb
|
@@ -205,28 +202,30 @@ files:
|
|
205
202
|
- lib/core/facets/array/splice.rb
|
206
203
|
- lib/core/facets/array/delete.rb
|
207
204
|
- lib/core/facets/array/pad.rb
|
208
|
-
- lib/core/facets/array/unzip.rb
|
209
205
|
- lib/core/facets/array/stackable.rb
|
210
206
|
- lib/core/facets/array/indexable.rb
|
211
207
|
- lib/core/facets/binding
|
208
|
+
- lib/core/facets/binding/defined.rb
|
212
209
|
- lib/core/facets/binding/eval.rb
|
213
210
|
- lib/core/facets/binding/cflow.rb
|
214
211
|
- lib/core/facets/binding/vars.rb
|
212
|
+
- lib/core/facets/binding/here.rb
|
213
|
+
- lib/core/facets/binding/self.rb
|
215
214
|
- lib/core/facets/class
|
216
215
|
- lib/core/facets/class/descendents.rb
|
217
216
|
- lib/core/facets/class/initializer.rb
|
218
217
|
- lib/core/facets/comparable
|
219
218
|
- lib/core/facets/comparable/cmp.rb
|
220
219
|
- lib/core/facets/comparable/bound.rb
|
221
|
-
- lib/core/facets/continuation
|
222
|
-
- lib/core/facets/continuation/create.rb
|
223
220
|
- lib/core/facets/dir
|
224
221
|
- lib/core/facets/dir/multiglob.rb
|
225
222
|
- lib/core/facets/dir/traverse.rb
|
226
223
|
- lib/core/facets/enumerable
|
224
|
+
- lib/core/facets/enumerable/each.rb
|
225
|
+
- lib/core/facets/enumerable/split.rb
|
226
|
+
- lib/core/facets/enumerable/mash.rb
|
227
227
|
- lib/core/facets/enumerable/cartesian.rb
|
228
228
|
- lib/core/facets/enumerable/combination.rb
|
229
|
-
- lib/core/facets/enumerable/collate.rb
|
230
229
|
- lib/core/facets/enumerable/collect.rb
|
231
230
|
- lib/core/facets/enumerable/permutation.rb
|
232
231
|
- lib/core/facets/enumerable/count.rb
|
@@ -240,6 +239,7 @@ files:
|
|
240
239
|
- lib/core/facets/float
|
241
240
|
- lib/core/facets/float/round.rb
|
242
241
|
- lib/core/facets/hash
|
242
|
+
- lib/core/facets/hash/slice.rb
|
243
243
|
- lib/core/facets/hash/iterate.rb
|
244
244
|
- lib/core/facets/hash/merge.rb
|
245
245
|
- lib/core/facets/hash/keyize.rb
|
@@ -262,7 +262,7 @@ files:
|
|
262
262
|
- lib/core/facets/integer/bitmask.rb
|
263
263
|
- lib/core/facets/kernel
|
264
264
|
- lib/core/facets/kernel/ergo.rb
|
265
|
-
- lib/core/facets/kernel/
|
265
|
+
- lib/core/facets/kernel/returning.rb
|
266
266
|
- lib/core/facets/kernel/callstack.rb
|
267
267
|
- lib/core/facets/kernel/super.rb
|
268
268
|
- lib/core/facets/kernel/val.rb
|
@@ -311,6 +311,7 @@ files:
|
|
311
311
|
- lib/core/facets/string
|
312
312
|
- lib/core/facets/string/splice.rb
|
313
313
|
- lib/core/facets/string/nchar.rb
|
314
|
+
- lib/core/facets/string/op.rb
|
314
315
|
- lib/core/facets/string/interpolate.rb
|
315
316
|
- lib/core/facets/string/scan.rb
|
316
317
|
- lib/core/facets/string/filter.rb
|
@@ -337,6 +338,7 @@ files:
|
|
337
338
|
- lib/core/facets/time
|
338
339
|
- lib/core/facets/time/change.rb
|
339
340
|
- lib/core/facets/time/elapse.rb
|
341
|
+
- lib/core/facets/time/stamp.rb
|
340
342
|
- lib/core/facets/unboundmethod
|
341
343
|
- lib/core/facets/unboundmethod/arguments.rb
|
342
344
|
- lib/core/facets/unboundmethod/name.rb
|
@@ -354,7 +356,6 @@ files:
|
|
354
356
|
- lib/core/facets/hash.rb
|
355
357
|
- lib/core/facets/unboundmethod.rb
|
356
358
|
- lib/core/facets/symbol.rb
|
357
|
-
- lib/core/facets/continuation.rb
|
358
359
|
- lib/core/facets/nilclass.rb
|
359
360
|
- lib/core/facets/module.rb
|
360
361
|
- lib/core/facets/kernel.rb
|
@@ -470,6 +471,9 @@ files:
|
|
470
471
|
- lib/methods/facets/kernel/false.rb
|
471
472
|
- lib/methods/facets/kernel/true.rb
|
472
473
|
- lib/methods/facets/kernel/not_nil.rb
|
474
|
+
- lib/methods/facets/kernel/Bit.rb
|
475
|
+
- lib/methods/facets/kernel/non_nil.rb
|
476
|
+
- lib/methods/facets/kernel/respond_with_value.rb
|
473
477
|
- lib/methods/facets/binding
|
474
478
|
- lib/methods/facets/binding/self.rb
|
475
479
|
- lib/methods/facets/binding/defined.rb
|
@@ -573,6 +577,9 @@ files:
|
|
573
577
|
- lib/methods/facets/string/outdent.rb
|
574
578
|
- lib/methods/facets/string/taballto.rb
|
575
579
|
- lib/methods/facets/string/titlecase.rb
|
580
|
+
- lib/methods/facets/string/camelcase.rb
|
581
|
+
- lib/methods/facets/string/snakecase.rb
|
582
|
+
- lib/methods/facets/string/op_minus.rb
|
576
583
|
- lib/methods/facets/comparable
|
577
584
|
- lib/methods/facets/comparable/cap.rb
|
578
585
|
- lib/methods/facets/comparable/clip.rb
|
@@ -630,6 +637,10 @@ files:
|
|
630
637
|
- lib/methods/facets/enumerable/mode.rb
|
631
638
|
- lib/methods/facets/enumerable/to_h.rb
|
632
639
|
- lib/methods/facets/enumerable/to_hash.rb
|
640
|
+
- lib/methods/facets/enumerable/modulate.rb
|
641
|
+
- lib/methods/facets/enumerable/collate.rb
|
642
|
+
- lib/methods/facets/enumerable/map_send.rb
|
643
|
+
- lib/methods/facets/enumerable/inject.rb
|
633
644
|
- lib/methods/facets/hash
|
634
645
|
- lib/methods/facets/hash/graph.rb
|
635
646
|
- lib/methods/facets/hash/collate.rb
|
@@ -671,6 +682,8 @@ files:
|
|
671
682
|
- lib/methods/facets/hash/to_struct.rb
|
672
683
|
- lib/methods/facets/hash/to_proc_with_reponse.rb
|
673
684
|
- lib/methods/facets/hash/to_proc.rb
|
685
|
+
- lib/methods/facets/hash/mash.rb
|
686
|
+
- lib/methods/facets/hash/except.rb
|
674
687
|
- lib/methods/facets/file
|
675
688
|
- lib/methods/facets/file/sanitize.rb
|
676
689
|
- lib/methods/facets/file/split_all.rb
|
@@ -771,6 +784,7 @@ files:
|
|
771
784
|
- lib/methods/facets/module/attr_switcher.rb
|
772
785
|
- lib/methods/facets/module/alias_tester.rb
|
773
786
|
- lib/methods/facets/module/alias_switcher.rb
|
787
|
+
- lib/methods/facets/module/class_def.rb
|
774
788
|
- lib/methods/facets/float
|
775
789
|
- lib/methods/facets/float/round_off.rb
|
776
790
|
- lib/methods/facets/float/round_to.rb
|
@@ -823,15 +837,25 @@ files:
|
|
823
837
|
- test/unit/array/test_stackable.rb
|
824
838
|
- test/unit/array/test_indexable.rb
|
825
839
|
- test/unit/array/test_only.rb
|
840
|
+
- test/unit/dir
|
841
|
+
- test/unit/dir/test_traverse.rb
|
842
|
+
- test/unit/filetest
|
843
|
+
- test/unit/filetest/test_root.rb
|
826
844
|
- test/unit/binding
|
827
845
|
- test/unit/binding/test_eval.rb
|
828
846
|
- test/unit/binding/test_cflow.rb
|
829
847
|
- test/unit/binding/test_vars.rb
|
848
|
+
- test/unit/binding/test_self.rb
|
849
|
+
- test/unit/binding/test_here.rb
|
850
|
+
- test/unit/binding/test_defined.rb
|
830
851
|
- test/unit/test_multiton.rb
|
852
|
+
- test/unit/exception
|
853
|
+
- test/unit/exception/test_detail.rb
|
831
854
|
- test/unit/test_advice.rb
|
832
855
|
- test/unit/file
|
833
856
|
- test/unit/file/test_topath.rb
|
834
857
|
- test/unit/file/test_write.rb
|
858
|
+
- test/unit/file/test_read.rb
|
835
859
|
- test/unit/test_1stclassmethod.rb
|
836
860
|
- test/unit/test_aop.rb
|
837
861
|
- test/unit/test_ansicode.rb
|
@@ -843,15 +867,16 @@ files:
|
|
843
867
|
- test/unit/comparable/test_cmp.rb
|
844
868
|
- test/unit/comparable/test_bound.rb
|
845
869
|
- test/unit/continuation
|
846
|
-
- test/unit/continuation/test_create.rb
|
847
870
|
- test/unit/enumerable
|
848
871
|
- test/unit/enumerable/test_cartesian.rb
|
849
872
|
- test/unit/enumerable/test_combination.rb
|
850
|
-
- test/unit/enumerable/test_collate.rb
|
851
873
|
- test/unit/enumerable/test_collect.rb
|
852
874
|
- test/unit/enumerable/test_permutation.rb
|
853
875
|
- test/unit/enumerable/test_count.rb
|
876
|
+
- test/unit/enumerable/test_each.rb
|
854
877
|
- test/unit/enumerable/test_probability.rb
|
878
|
+
- test/unit/enumerable/test_split.rb
|
879
|
+
- test/unit/enumerable/test_mash.rb
|
855
880
|
- test/unit/hash
|
856
881
|
- test/unit/hash/test_merge.rb
|
857
882
|
- test/unit/hash/test_iterate.rb
|
@@ -874,7 +899,7 @@ files:
|
|
874
899
|
- test/unit/integer/test_of.rb
|
875
900
|
- test/unit/integer/test_bitmask.rb
|
876
901
|
- test/unit/kernel
|
877
|
-
- test/unit/kernel/
|
902
|
+
- test/unit/kernel/test_returning.rb
|
878
903
|
- test/unit/kernel/test_callstack.rb
|
879
904
|
- test/unit/kernel/test_super.rb
|
880
905
|
- test/unit/kernel/test_val.rb
|
@@ -923,6 +948,7 @@ files:
|
|
923
948
|
- test/unit/string/test_range.rb
|
924
949
|
- test/unit/string/test_regesc.rb
|
925
950
|
- test/unit/string/test_crypt.rb
|
951
|
+
- test/unit/string/test_op.rb
|
926
952
|
- test/unit/string/test_bracket.rb
|
927
953
|
- test/unit/string/test_case.rb
|
928
954
|
- test/unit/string/test_natcmp.rb
|
@@ -968,7 +994,6 @@ files:
|
|
968
994
|
- test/unit/test_let.rb
|
969
995
|
- test/unit/test_linkedlist.rb
|
970
996
|
- test/unit/test_lrucache.rb
|
971
|
-
- test/unit/test_mapsend.rb
|
972
997
|
- test/unit/test_memoize.rb
|
973
998
|
- test/unit/test_multipliers.rb
|
974
999
|
- test/unit/test_namespace.rb
|
@@ -992,8 +1017,10 @@ files:
|
|
992
1017
|
- test/unit/time
|
993
1018
|
- test/unit/time/test_change.rb
|
994
1019
|
- test/unit/time/test_elapse.rb
|
1020
|
+
- test/unit/time/test_stamp.rb
|
1021
|
+
- test/unit/test_thread.rb
|
995
1022
|
- test/unit/test_interface.rb
|
996
|
-
- test/unit/
|
1023
|
+
- test/unit/test_continuation.rb
|
997
1024
|
- AUTHORS
|
998
1025
|
- COPYING
|
999
1026
|
- NOTES
|
@@ -1009,15 +1036,25 @@ test_files:
|
|
1009
1036
|
- test/unit/array/test_stackable.rb
|
1010
1037
|
- test/unit/array/test_indexable.rb
|
1011
1038
|
- test/unit/array/test_only.rb
|
1039
|
+
- test/unit/dir
|
1040
|
+
- test/unit/dir/test_traverse.rb
|
1041
|
+
- test/unit/filetest
|
1042
|
+
- test/unit/filetest/test_root.rb
|
1012
1043
|
- test/unit/binding
|
1013
1044
|
- test/unit/binding/test_eval.rb
|
1014
1045
|
- test/unit/binding/test_cflow.rb
|
1015
1046
|
- test/unit/binding/test_vars.rb
|
1047
|
+
- test/unit/binding/test_self.rb
|
1048
|
+
- test/unit/binding/test_here.rb
|
1049
|
+
- test/unit/binding/test_defined.rb
|
1016
1050
|
- test/unit/test_multiton.rb
|
1051
|
+
- test/unit/exception
|
1052
|
+
- test/unit/exception/test_detail.rb
|
1017
1053
|
- test/unit/test_advice.rb
|
1018
1054
|
- test/unit/file
|
1019
1055
|
- test/unit/file/test_topath.rb
|
1020
1056
|
- test/unit/file/test_write.rb
|
1057
|
+
- test/unit/file/test_read.rb
|
1021
1058
|
- test/unit/test_1stclassmethod.rb
|
1022
1059
|
- test/unit/test_aop.rb
|
1023
1060
|
- test/unit/test_ansicode.rb
|
@@ -1029,15 +1066,16 @@ test_files:
|
|
1029
1066
|
- test/unit/comparable/test_cmp.rb
|
1030
1067
|
- test/unit/comparable/test_bound.rb
|
1031
1068
|
- test/unit/continuation
|
1032
|
-
- test/unit/continuation/test_create.rb
|
1033
1069
|
- test/unit/enumerable
|
1034
1070
|
- test/unit/enumerable/test_cartesian.rb
|
1035
1071
|
- test/unit/enumerable/test_combination.rb
|
1036
|
-
- test/unit/enumerable/test_collate.rb
|
1037
1072
|
- test/unit/enumerable/test_collect.rb
|
1038
1073
|
- test/unit/enumerable/test_permutation.rb
|
1039
1074
|
- test/unit/enumerable/test_count.rb
|
1075
|
+
- test/unit/enumerable/test_each.rb
|
1040
1076
|
- test/unit/enumerable/test_probability.rb
|
1077
|
+
- test/unit/enumerable/test_split.rb
|
1078
|
+
- test/unit/enumerable/test_mash.rb
|
1041
1079
|
- test/unit/hash
|
1042
1080
|
- test/unit/hash/test_merge.rb
|
1043
1081
|
- test/unit/hash/test_iterate.rb
|
@@ -1060,7 +1098,7 @@ test_files:
|
|
1060
1098
|
- test/unit/integer/test_of.rb
|
1061
1099
|
- test/unit/integer/test_bitmask.rb
|
1062
1100
|
- test/unit/kernel
|
1063
|
-
- test/unit/kernel/
|
1101
|
+
- test/unit/kernel/test_returning.rb
|
1064
1102
|
- test/unit/kernel/test_callstack.rb
|
1065
1103
|
- test/unit/kernel/test_super.rb
|
1066
1104
|
- test/unit/kernel/test_val.rb
|
@@ -1109,6 +1147,7 @@ test_files:
|
|
1109
1147
|
- test/unit/string/test_range.rb
|
1110
1148
|
- test/unit/string/test_regesc.rb
|
1111
1149
|
- test/unit/string/test_crypt.rb
|
1150
|
+
- test/unit/string/test_op.rb
|
1112
1151
|
- test/unit/string/test_bracket.rb
|
1113
1152
|
- test/unit/string/test_case.rb
|
1114
1153
|
- test/unit/string/test_natcmp.rb
|
@@ -1154,7 +1193,6 @@ test_files:
|
|
1154
1193
|
- test/unit/test_let.rb
|
1155
1194
|
- test/unit/test_linkedlist.rb
|
1156
1195
|
- test/unit/test_lrucache.rb
|
1157
|
-
- test/unit/test_mapsend.rb
|
1158
1196
|
- test/unit/test_memoize.rb
|
1159
1197
|
- test/unit/test_multipliers.rb
|
1160
1198
|
- test/unit/test_namespace.rb
|
@@ -1178,8 +1216,10 @@ test_files:
|
|
1178
1216
|
- test/unit/time
|
1179
1217
|
- test/unit/time/test_change.rb
|
1180
1218
|
- test/unit/time/test_elapse.rb
|
1219
|
+
- test/unit/time/test_stamp.rb
|
1220
|
+
- test/unit/test_thread.rb
|
1181
1221
|
- test/unit/test_interface.rb
|
1182
|
-
- test/unit/
|
1222
|
+
- test/unit/test_continuation.rb
|
1183
1223
|
rdoc_options: []
|
1184
1224
|
|
1185
1225
|
extra_rdoc_files: []
|