COMMIT 1.8.7: UnboundMethod#name (new) http://github.com/rubyspec/rubyspec/commit/897ddcd3afa24ef7bec1a2a2fbc848aa54827d7a COMMIT 1.8.7: UnboundMethod#owner (new) http://github.com/rubyspec/rubyspec/commit/73586da6fae3a1deff993e7bdf691b5c4ff7b8c9 COMMIT 1.8.7: Method#receiver (new) http://github.com/rubyspec/rubyspec/commit/1cf2bd8943d499ceeb9b8ce7b1857f5c5bbe8b52 COMMIT 1.8.7: Method#owner (new) http://github.com/rubyspec/rubyspec/commit/b1453b870f040b4c0c4c8088d61e5b33982c6a37 COMMIT 1.8.7: Method#name (new) http://github.com/rubyspec/rubyspec/commit/4a92667554da21dd3ad9fe73e8dc752696c0bcef COMMIT Time.new: allowed 1 second difference between two successive calss http://github.com/rubyspec/rubyspec/commit/aec0cd5892e6e546be102d34eb9f7fda67d512be COMMIT 1.8.7: New Hash[] syntax, blessed by Matz http://github.com/rubyspec/rubyspec/commit/67bc03e6552a664810a9f49599f80a991276d0bd COMMIT 1.8.7: Kernel.loop http://github.com/rubyspec/rubyspec/commit/fb14bccd972b8181e496ee9cf287300ab68b2624 --- 20090513T075743 +++ 20090514T075030 @@ -1,8918 +1,8918 @@ IMAPTest#test_imaps_with_ca_file: s: . IMAPTest#test_starttls: s: . IMAPTest#test_unexpected_eof: s: . -MinitestSpec#test_needs_to_verify_equality: s: . -MinitestSpec#test_needs_to_verify_regexp_matches: s: . -MinitestSpec#test_needs_to_be_able_to_catch_a_minitest_assertion_exception: s: . -MinitestSpec#test_needs_to_verify_mismatch: s: . MinitestSpec#test_needs_to_catch_an_unexpected_exception: s: . -MinitestSpec#test_needs_raise_if_an_expected_exception_is_not_raised: s: . MinitestSpec#test_needs_to_verify_using_respond_to: s: . -MinitestSpec#test_needs_to_verify_non_nil: s: . -MinitestSpec#test_needs_to_verify_non_identity: s: . -MinitestSpec#test_needs_to_verify_nil: s: . -MinitestSpec#test_needs_to_catch_an_expected_exception: s: . +MinitestSpec#test_needs_to_verify_kinds_of_objects: s: . +MinitestSpec#test_needs_to_verify_mismatch: s: . MinitestSpec#test_needs_to_verify_types_of_objects: s: . MinitestSpec#test_needs_to_verify_throw: s: . -MinitestSpec#test_needs_to_verify_using_any_operator: s: . MinitestSpec#test_needs_to_verify_identity: s: . -MinitestSpec#test_needs_to_have_all_methods_named_well: s: . MinitestSpec#test_needs_to_verify_floats_within_a_delta: s: . -MinitestSpec#test_needs_to_verify_kinds_of_objects: s: . +MinitestSpec#test_needs_to_verify_using_any_operator: s: . +MinitestSpec#test_needs_to_verify_regexp_matches: s: . +MinitestSpec#test_needs_raise_if_an_expected_exception_is_not_raised: s: . +MinitestSpec#test_needs_to_verify_non_nil: s: . +MinitestSpec#test_needs_to_verify_nil: s: . +MinitestSpec#test_needs_to_catch_an_expected_exception: s: . +MinitestSpec#test_needs_to_be_able_to_catch_a_minitest_assertion_exception: s: . +MinitestSpec#test_needs_to_verify_non_identity: s: . MinitestSpec#test_needs_to_verify_inequality: s: . +MinitestSpec#test_needs_to_have_all_methods_named_well: s: . +MinitestSpec#test_needs_to_verify_equality: s: . NonString#test_6: s: . NonString#test_7: s: . OpenSSL::TestASN1#test_decode: s: . @@ -19680,8 +19680,9 @@ Hash.[] - creates a Hash; values can be provided as the argument list - creates a Hash; values can be provided as one single hash +- creates a Hash; values can be provided as a list of value-pairs in an array - raises an ArgumentError when passed an odd number of arguments -- call to_hash +- calls to_hash - returns an instance of the class it's called on /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/hash/default_proc_spec.rb @@ -20165,6 +20166,7 @@ - raises IOError on closed stream - yields each byte - works on empty streams +- returns an Enumerator when passed no block /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/io/each_line_spec.rb IO#each_line @@ -21110,6 +21112,7 @@ - calls block until it is terminated by a break - returns value passed to break - returns nil if no value passed to break +- returns an enumerator if no block given (ERROR - ) - rescues StopIteration - rescues StopIteration's subclasses - does not rescue other errors @@ -21925,6 +21928,22 @@ - returns a String containing the Module the method is defined in - returns a String containing the Module the method is referenced from +/home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/method/name_spec.rb +Method#name +- returns the name of the method +- returns the name even when aliased + +/home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/method/owner_spec.rb +Method#owner +- returns the owner of the method +- returns the name even when aliased +- returns the class/module it was defined in + +/home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/method/receiver_spec.rb +Method#receiver +- returns the receiver of the method +- returns the right receiver even when aliased + /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/method/to_proc_spec.rb Method#to_proc - returns a Proc object corresponding to the method @@ -24920,6 +24939,17 @@ - the String reflects that this is an UnboundMethod object - the String shows the method name, Module defined in and Module extracted from +/home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/unboundmethod/name_spec.rb +UnboundMethod#name +- returns the name of the method +- returns the name even when aliased + +/home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/unboundmethod/owner_spec.rb +UnboundMethod#owner +- returns the owner of the method +- returns the name even when aliased +- returns the class/module it was defined in + /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/unboundmethod/to_s_spec.rb UnboundMethod#to_s - returns a String @@ -29283,7 +29313,7 @@ Prime#each - iterates the given block over all prime numbers -- infinitely iterates the given block passing a prime (FAILED - ) +- infinitely iterates the given block passing a prime - passes a prime to the given block ascendently - returns the last evaluated value of the given block - iterates the given block over all prime numbers which are equal to or less than the first argument @@ -29299,7 +29329,7 @@ Prime#each when an instance created via Prime.new - iterates the given block over all prime numbers -- infinitely iterates the given block passing a prime (FAILED - ) +- infinitely iterates the given block passing a prime - raises a ArgumentError when is called with some argumetns - passes a prime to the given block ascendently - returns an evaluated value of the given block @@ -33428,6 +33458,35 @@ /home/chkbuild/tmp/build/ruby-1.9.1//mspec/bin/mspec-ci:8:in `
' ) +Kernel.loop returns an enumerator if no block given ERROR +LocalJumpError: no block given +/home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/kernel/loop_spec.rb:39:in `loop' +/home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/kernel/loop_spec.rb:39:in `block (3 levels) in ' +/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:67:in `instance_eval' +/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:67:in `protect' +/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/context.rb:135:in `block in protect' +/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/context.rb:135:in `each' +/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/context.rb:135:in `all?' +/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/context.rb:135:in `protect' +/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/context.rb:163:in `block in process' +/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/context.rb:155:in `each' +/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/context.rb:155:in `process' +/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:36:in `describe' +/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/object.rb:11:in `describe' +/home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/core/kernel/loop_spec.rb:4:in `' +/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:55:in `load' +/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:55:in `block (2 levels) in files' +/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:67:in `instance_eval' +/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:67:in `protect' +/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:55:in `block in files' +/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:49:in `each' +/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:49:in `files' +/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:41:in `process' +/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/commands/mspec-ci.rb:73:in `run' +/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/utils/script.rb:217:in `main' +/home/chkbuild/tmp/build/ruby-1.9.1//mspec/bin/mspec-ci:8:in `
' + + ) Module#instance_method raises an ArgumentError if passed a Fixnum that is not a symbol FAILED Expected ArgumentError but got TypeError (0 is not a symbol) /home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/expectations/expectations.rb:15:in `fail_with' @@ -33590,68 +33649,6 @@ /home/chkbuild/tmp/build/ruby-1.9.1//mspec/bin/mspec-ci:8:in `
' ) -Prime#each infinitely iterates the given block passing a prime FAILED -Expected Timeout::Error -but got SpecExpectationNotMetError (Expected false to be true) -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/expectations/expectations.rb:15:in `fail_with' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/expectations/should.rb:7:in `should' -/home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/library/prime/shared/each.rb:21:in `block (2 levels) in ' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:67:in `instance_eval' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:67:in `protect' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/context.rb:135:in `block in protect' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/context.rb:135:in `each' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/context.rb:135:in `all?' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/context.rb:135:in `protect' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/context.rb:163:in `block in process' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/context.rb:155:in `each' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/context.rb:155:in `process' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:36:in `describe' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/object.rb:11:in `describe' -/home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/library/prime/each_spec.rb:13:in `' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:55:in `load' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:55:in `block (2 levels) in files' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:67:in `instance_eval' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:67:in `protect' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:55:in `block in files' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:49:in `each' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:49:in `files' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:41:in `process' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/commands/mspec-ci.rb:73:in `run' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/utils/script.rb:217:in `main' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/bin/mspec-ci:8:in `
' - - ) -Prime#each when an instance created via Prime.new infinitely iterates the given block passing a prime FAILED -Expected Timeout::Error -but got SpecExpectationNotMetError (Expected false to be true) -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/expectations/expectations.rb:15:in `fail_with' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/expectations/should.rb:7:in `should' -/home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/library/prime/each_spec.rb:41:in `block (2 levels) in ' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:67:in `instance_eval' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:67:in `protect' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/context.rb:135:in `block in protect' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/context.rb:135:in `each' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/context.rb:135:in `all?' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/context.rb:135:in `protect' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/context.rb:163:in `block in process' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/context.rb:155:in `each' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/context.rb:155:in `process' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:36:in `describe' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/object.rb:11:in `describe' -/home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/library/prime/each_spec.rb:17:in `' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:55:in `load' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:55:in `block (2 levels) in files' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:67:in `instance_eval' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:67:in `protect' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:55:in `block in files' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:49:in `each' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:49:in `files' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/runner/mspec.rb:41:in `process' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/commands/mspec-ci.rb:73:in `run' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/lib/mspec/utils/script.rb:217:in `main' -/home/chkbuild/tmp/build/ruby-1.9.1//mspec/bin/mspec-ci:8:in `
' - - ) An exception occurred during: loading /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/library/stringio/puts_spec.rb ERROR SyntaxError: /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/library/stringio/puts_spec.rb:148: invalid multibyte char (US-ASCII) /home/chkbuild/tmp/build/ruby-1.9.1//rubyspec/library/stringio/puts_spec.rb:148: invalid multibyte char (US-ASCII) @@ -33672,7 +33669,7 @@ Finished in seconds -2558 files, 9130 examples, 109752 expectations, 20 failures, 13 errors +2563 files, 9145 examples, 117531 expectations, 18 failures, 14 errors exit 1 failed(rubyspec) == end #