Created
January 4, 2010 02:35
-
-
Save BanzaiMan/268251 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| surfboard:jruby[git:master]$ jruby spec/mspec/bin/mspec -f s -g fails -g critical -g windows --dry-run -T--1.8 -B spec/jruby.1.8.mspec spec/ | |
| jruby 1.5.0.dev (ruby 1.8.7 patchlevel 174) (2010-01-03 c6090f1) (Java HotSpot(TM) 64-Bit Server VM 1.6.0_17) [x86_64-java] | |
| (ERROR - 1) | |
| - (ERROR - 2) | |
| - (ERROR - 3) | |
| - (ERROR - 4) | |
| - (ERROR - 5) | |
| - (ERROR - 6) | |
| - (ERROR - 7) | |
| - (ERROR - 8) | |
| - (ERROR - 9) | |
| - (ERROR - 10) | |
| - (ERROR - 11) | |
| - (ERROR - 12) | |
| - (ERROR - 13) | |
| - (ERROR - 14) | |
| - (ERROR - 15) | |
| - (ERROR - 16) | |
| - (ERROR - 17) | |
| - (ERROR - 18) | |
| - (ERROR - 19) | |
| - (ERROR - 20) | |
| - (ERROR - 21) | |
| - (ERROR - 22) | |
| - (ERROR - 23) | |
| - (ERROR - 24) | |
| - (ERROR - 25) | |
| - (ERROR - 26) | |
| - (ERROR - 27) | |
| - (ERROR - 28) | |
| - (ERROR - 29) | |
| - (ERROR - 30) | |
| - (ERROR - 31) | |
| - (ERROR - 32) | |
| Array#hash | |
| - returns the same hash for equal recursive arrays | |
| - returns the same hash for equal recursive arrays through hashes | |
| Class#superclass for a singleton class | |
| - of an object returns the class of the object | |
| - of a class returns the singleton class of its superclass | |
| Executing a Continuation | |
| - using #call transfers execution to right after the Kernel.callcc block | |
| - escapes an inner ensure block | |
| - executes an outer ensure block | |
| Dir#close | |
| - closes the stream and fd and returns nil | |
| ENV.clear | |
| - deletes all environment variables | |
| File#flock | |
| - returns false if trying to lock an exclusively locked file | |
| - returns 0 if trying to lock a non-exclusively locked file | |
| File.new | |
| - opens directories | |
| File.open | |
| - opens directories | |
| File.stat | |
| - returns information for a file that has been deleted but is still open | |
| Hash#hash | |
| - returns the same hash for recursive hashes | |
| - returns the same hash for recursive hashes through arrays | |
| IO#close on an IO.popen stream | |
| - clears #pid | |
| - sets $? | |
| - waits for the child to exit | |
| DATA.flock | |
| - succeeds in locking the file DATA came from | |
| IO#isatty | |
| - returns true if this stream is a terminal device (TTY) | |
| IO::popen | |
| - writes to a write-only pipe | |
| - allows the io to be closed inside the block | |
| IO#reopen | |
| - reassociates self with a new stream after some reads | |
| IO.sysopen | |
| - works on directories | |
| IO#tty? | |
| - returns true if this stream is a terminal device (TTY) | |
| Kernel.autoload | |
| - sets the autoload constant in Object's constant table | |
| Kernel#` | |
| - sets $? to the exit status of the executed sub-process | |
| self.send(:block_given?) | |
| - always returns false | |
| Kernel#callcc | |
| - is possible to call a continuation multiple times | |
| - returns the results of continuation once called | |
| - preserves changes to block-local scope | |
| - preserves changes to method-local scope | |
| Kernel#caller in a Proc or eval | |
| - returns the definition trace of a block when evaluated in a Proc binding | |
| - returns the definition trace of a Proc | |
| - returns the correct definition line for a complex Proc trace | |
| Kernel#instance_eval | |
| - shares a scope across sibling evals | |
| Kernel.lambda | |
| - allows long returns to flow through it | |
| Kernel#load | |
| - allows wrapping the code in the file in an anonymous module | |
| Kernel.proc | |
| - allows long returns to flow through it | |
| Kernel#public_methods | |
| - returns a list of the names of publicly accessible methods in the object | |
| - returns a list of the names of publicly accessible methods in the object and its ancestors and mixed-in modules | |
| Marshal.dump | |
| - dumps a Float 8323434.342 | |
| Marshal::load | |
| - loads an Array with proc | |
| Module#autoload | |
| - does not load the file when refering to the constant in defined? | |
| - shares the autoload request across dup'ed copies of modules | |
| Module#module_function with specific method names | |
| - can make accessible private methods | |
| Module#module_function as a toggle (no arguments) in a Module body | |
| - functions normally if both toggle and definitions inside a module_eval | |
| - affects definitions when inside an eval even if the definitions are outside of it | |
| - functions normally if both toggle and definitions inside a module_eval | |
| Module#public | |
| - on a superclass method calls the redefined method | |
| ObjectSpace.define_finalizer | |
| - calls finalizer on process termination | |
| - doesn't call self-referencing finalizers | |
| Proc.new with an associated block | |
| - raises a LocalJumpError when context of the block no longer exists | |
| Process.abort | |
| - terminates execution immediately | |
| Process::Constants | |
| - has the correct constant values on BSD-like systems | |
| - has the correct constant values on Darwin | |
| Process#detach | |
| - returns a thread | |
| - reaps the child process's status automatically | |
| Process.groups | |
| - gets an Array of the gids of groups in the supplemental group access list | |
| - sets the list of gids of groups in the supplemental group access list | |
| Process.initgroups | |
| - initializes the supplemental group access list | |
| Process.kill | |
| - tests for the existence of a process without sending a signal | |
| - raises an EPERM if permission is denied | |
| Process.kill | |
| - sends the given signal to the specified process | |
| - kills process groups if signal is negative | |
| - kills process groups if signal starts with a minus sign | |
| - kills process groups if signal starts with a minus sign and 'SIG' | |
| Process.maxgroups | |
| - returns the maximum number of gids allowed in the supplemental group access list | |
| - sets the maximum number of gids allowed in the supplemental group access list | |
| Process.ppid | |
| - returns the process id of the parent of this process | |
| Process.setpgid | |
| - sets the process group id of the specified process | |
| Process.setpgrp and Process.getpgrp | |
| - set and get the process group ID of the calling process | |
| Process.setrlimit | |
| - requires at least two arguments | |
| Process.setrlimit and Process.getrlimit | |
| - limit and get core size (bytes) | |
| - limit and get CPU time (seconds) | |
| - limit and get data segment (bytes) | |
| - limit and get file size (bytes) | |
| - limit and get file descriptors (number) | |
| - limit and get stack size (bytes) | |
| - limit and get total available memory (bytes) | |
| - limit and get total size for mlock(2) (bytes) | |
| - limit and get number of processes for the user (number) | |
| - limit and get resident memory size (bytes) | |
| Process.setsid | |
| - establishes this process as a new session and process group leader | |
| Process.wait2 | |
| - returns the pid and status of child process | |
| Process.wait | |
| - returns its childs pid | |
| - sets $? to a Process::Status | |
| - waits for any child process if no pid is given | |
| - waits for a specific child if a pid is given | |
| - waits for a child whose process group ID is that of the calling process | |
| - doesn't block if no child is available when WNOHANG is used | |
| - always accepts flags=0 | |
| Process.waitall | |
| - waits for all children | |
| - returns an array of pid/status pairs | |
| String#gsub! with pattern and block | |
| - raises a RuntimeError when self is frozen | |
| Struct#eql? | |
| - handles recursive structures by returning false if a difference can be found | |
| Struct#== | |
| - handles recursive structures by returning false if a difference can be found | |
| Struct#hash | |
| - returns the same hash for recursive structs | |
| Thread#alive? | |
| - reports aborting on a killed thread | |
| Thread.critical= | |
| - defers exit | |
| - defers exit until Thread.pass | |
| - is not reset if the critical thread is killed | |
| Thread#exit | |
| - killing dying running does nothing | |
| Thread#inspect | |
| - describes a dying running thread | |
| - reports aborting on a killed thread | |
| Thread#join | |
| - returns the dead thread even if an uncaught exception is thrown from ensure block | |
| Thread#kill | |
| - killing dying running does nothing | |
| Thread#status | |
| - describes a dying running thread | |
| - reports aborting on a killed thread | |
| Thread#stop? | |
| - describes a killed thread | |
| - describes a thread with an uncaught exception | |
| - reports aborting on a killed thread | |
| Thread#terminate | |
| - killing dying running does nothing | |
| Thread#value | |
| - is false for a killed thread | |
| - is false for an uncaught exception thrown from a dying thread | |
| `` | |
| - returns the output of the executed sub-process | |
| %x | |
| - is the same as `` | |
| The for expression | |
| - repeats the loop from the beginning with 'retry' | |
| Hash literal | |
| - freezes string keys on initialization | |
| The next statement | |
| - raises a LocalJumpError if used not within block or while/for loop | |
| Execution variable $: | |
| - does not include '.' when the taint check level > 1 | |
| The predefined global constants | |
| - includes DATA when main script contains __END__ | |
| - does not include DATA when main script contains no __END__ | |
| Regexps with modifers | |
| - does not do thread synchronization for /o | |
| The return keyword within a block | |
| - raises a LocalJumpError if there is no lexicaly enclosing method | |
| BigDecimal#=== | |
| - NaN is never equal to any number | |
| - returns false when compared objects that can not be coerced into BigDecimal | |
| BigDecimal#eql? | |
| - NaN is never equal to any number | |
| - returns false when compared objects that can not be coerced into BigDecimal | |
| BigDecimal#== | |
| - NaN is never equal to any number | |
| - returns false when compared objects that can not be coerced into BigDecimal | |
| BigDecimal#> | |
| - properly handles NaN values | |
| - raises an ArgumentError if the argument can't be coerced into a BigDecimal | |
| BigDecimal#>= | |
| - properly handles NaN values | |
| - returns nil if the argument is nil | |
| BigDecimal#< | |
| - properly handles NaN values | |
| - raises an ArgumentError if the argument can't be coerced into a BigDecimal | |
| BigDecimal#<= | |
| - properly handles NaN values | |
| - raises an ArgumentError if the argument can't be coerced into a BigDecimal | |
| BigDecimal.new | |
| - doesn't segfault when using a very large string to build the number | |
| BigDecimal#remainder | |
| - it is the modulus minus the value divided by, if values have opposite sign | |
| CGI::Cookie#value= | |
| - automatically converts the passed Object to an Array using #Array | |
| - does keep self and the values in sync | |
| CGI::HtmlExtension#checkbox_group when passed name, values ... | |
| - allows passing a value as an Array containing the value, a label and the checked state | |
| CGI::HtmlExtension#file_field when passed a Hash | |
| - returns a file-'input'-element using the passed Hash for attributes | |
| - ignores a passed block | |
| CGI::HtmlExtension#img when passed Hash | |
| - returns an 'img'-element with the passed Hash as attributes | |
| - ignores a passed block | |
| CGI::HtmlExtension#radio_group when passed name, values ... | |
| - allows passing a value as an Array containing the value, a label and the checked state | |
| Numeric#angle | |
| - returns NaN if self is NaN | |
| - returns Pi if -0.0 | |
| Numeric#arg | |
| - returns NaN if self is NaN | |
| - returns Pi if -0.0 | |
| Numeric#polar | |
| - returns [NaN, NaN] if self is NaN | |
| Date#civil | |
| - doesn't blow up (illegal instruction and segfault, respectively) when fed huge numbers | |
| Date#new | |
| - doesn't blow up (illegal instruction and segfault, respectively) when fed huge numbers | |
| SimpleDelegator when frozen | |
| - is not writeable | |
| - creates a frozen clone | |
| SimpleDelegator | |
| - can be marshalled with its instance variables intact | |
| SimpleDelegator.new | |
| - forwards private method calls made via send or __send__ | |
| DRb.stop_service | |
| - should correctly clear the port so a new server can start | |
| Enumerator#next | |
| - cannot be called again until the enumerator is rewound | |
| ERB#filename | |
| - raises an exception if there are errors processing content | |
| - uses '(erb)' as filename when filename is not set | |
| Iconv#close | |
| - returns a string containing the byte sequence to change the output buffer to its initial shift state | |
| Iconv.conv | |
| - acts exactly as if opening a converter and invoking #iconv once | |
| Iconv::Failure#failed | |
| - returns a substring of the original string passed to Iconv that starts at the character which caused the exception | |
| - for Iconv.iconv and Iconv.conv returns an array containing a single element when instantiated | |
| Iconv::Failure#inspect | |
| - includes information on the exception class name, #succes and #failed | |
| Iconv::Failure#success | |
| - for Iconv#iconv and Iconv.conv returns the substring of the original string passed which was translated successfully until the exception ocurred | |
| - for Iconv.iconv returns an array containing all the strings that were translated successfully until the exception ocurred, in order | |
| Iconv#iconv | |
| - raises Iconv::InvalidCharacter when an incomplete character or shift sequence happens at the end of the input buffer | |
| The 'utf-16be' decoder | |
| - treats possible byte-order marks as regular characters | |
| The 'utf-16le' decoder | |
| - treats possible byte-order marks as regular characters | |
| Integer#prime_division | |
| - Performs a prime factorization of a negative integer | |
| Matrix#coerce | |
| - allows the division of fixnum by a Matrix | |
| Matrix#collect | |
| - returns an enumerator if no block is given | |
| Matrix#column_size | |
| - returns 0 for empty matrices | |
| Matrix#column | |
| - returns self when called with a block | |
| - returns nil when out of bounds | |
| - never yields when out of bounds | |
| Matrix.column_vector | |
| - returns an empty Matrix when called with an empty Array | |
| Matrix.columns | |
| - handles empty matrices | |
| Matrix.[] | |
| - requires arrays as parameters | |
| - creates an empty Matrix with no arguments | |
| - raises for non-rectangular matrices | |
| - accepts vector arguments | |
| - tries to calls :to_ary on arguments | |
| Matrix#det | |
| - returns the determinant of a square Matrix | |
| - returns 1 for an empty Matrix | |
| Matrix#determinant | |
| - returns the determinant of a square Matrix | |
| - returns 1 for an empty Matrix | |
| Matrix#/ | |
| - returns the result of dividing self by another Matrix | |
| Matrix#[] | |
| - returns nil for an invalid index pair | |
| Matrix#eql? | |
| - returns false if some elements are == but not eql? | |
| Matrix#inspect | |
| - returns 'Matrix.empty(...)' for empty matrices | |
| Matrix#inv | |
| - returns the inverse of the Matrix (other case) | |
| - raises a ErrDimensionMismatch if the Matrix is not square | |
| Matrix#inverse | |
| - returns the inverse of the Matrix (other case) | |
| - raises a ErrDimensionMismatch if the Matrix is not square | |
| Matrix#map | |
| - returns an enumerator if no block is given | |
| Matrix#minor with start_row, nrows, start_col, ncols | |
| - returns an empty Matrix unless nrows and ncols are greater than 0 | |
| - returns nil for out-of-bounds start_row/col | |
| - returns nil for negative nrows or ncols | |
| Matrix#minor with col_range, row_range | |
| - returns nil if col_range or row_range is out of range | |
| Matrix#* | |
| - returns a zero matrix if (nx0) * (0xn) | |
| - returns an empty matrix if (0xn) * (nx0) | |
| - returns a 0xm matrix if (0xm) * (mxn) | |
| Matrix#rank | |
| - works for some easy rectangular matrices | |
| Matrix#row | |
| - returns self when called with a block | |
| - returns nil when out of bounds | |
| - never yields when out of bounds | |
| Matrix#square? | |
| - returns handles empty matrices | |
| Matrix#transpose | |
| - can transpose empty matrices | |
| Matrix#tr | |
| - returns the sum of diagonal elements in a rectangular Matrix | |
| Matrix#trace | |
| - returns the sum of diagonal elements in a rectangular Matrix | |
| Matrix#transpose | |
| - can transpose empty matrices | |
| Vector.each2 given one argument | |
| - requires the argument to be a Vector or an Array | |
| - returns self when given a block | |
| Vector#eql? | |
| - returns false when there are a pair corresponding elements which are not equal in the sense of Object#eql? | |
| OpenSSL::Random#pseudo_bytes | |
| - raises ArgumentError on negative arguments | |
| OpenSSL::Random#random_bytes | |
| - raises ArgumentError on negative arguments | |
| ParseDate.parsedate | |
| - returns Array with year and month set, given a String like nn-nn | |
| (ERROR - 33) | |
| - (ERROR - 34) | |
| - (ERROR - 35) | |
| - (ERROR - 36) | |
| - (ERROR - 37) | |
| - (ERROR - 38) | |
| - (ERROR - 39) | |
| - (ERROR - 40) | |
| - (ERROR - 41) | |
| - (ERROR - 42) | |
| - (ERROR - 43) | |
| - (ERROR - 44) | |
| REXML::Document#add | |
| - overwrites existing DocType | |
| REXML::Document#<< | |
| - overwrites existing DocType | |
| REXML::Document#write | |
| - returns document with transitive support | |
| REXML::Element#delete_element | |
| - deletes Element and returns it | |
| SortedSet#add | |
| - takes only values which responds <=> | |
| SortedSet#flatten | |
| - returns a copy of self with each included SortedSet flattened | |
| SortedSet#flatten! | |
| - flattens self | |
| - returns self when self was modified | |
| SortedSet#initialize | |
| - takes only comparable values | |
| BasicSocket#recv | |
| - accepts flags to specify unusual receiving behaviour | |
| BasicSocket#send | |
| - accepts flags to specify unusual sending behaviour | |
| Socket::IPSocket#addr | |
| - returns an array with the socket's information | |
| Socket::IPSocket#peeraddr | |
| - returns an array of information on the peer | |
| Socket::IPSocket#recvfrom | |
| - reads data from the connection | |
| - reads up to len bytes | |
| - returns an array with the data and connection info | |
| Socket#getaddrinfo | |
| - accepts empty addresses for IPv4 passive sockets | |
| - accepts empty addresses for IPv4 non-passive sockets | |
| - accepts empty addresses for IPv6 passive sockets | |
| - accepts empty addresses for IPv6 non-passive sockets | |
| Socket#listen | |
| - verifies we can listen for incoming connections | |
| TCPSocket#gethostbyname | |
| - returns the canonical name as first value | |
| UDPSocket.send | |
| - sends data in ad hoc mode | |
| - sends data in connection mode | |
| UNIXServer#accept | |
| - can be interrupted by Thread#kill | |
| - can be interrupted by Thread#raise | |
| URI#eql? | |
| - returns false for when compared to non-uri objects | |
| URI#== | |
| - ignores capitalization of scheme | |
| Zlib::Deflate#params | |
| - changes the deflate parameters | |
| 1) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/addons/io_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/addons/io_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/addons/io_spec.rb:55:in `load' | |
| 2) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/addons/object_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/addons/object_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/addons/object_spec.rb:55:in `load' | |
| 3) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/addons/string_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/addons/string_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/addons/string_spec.rb:55:in `load' | |
| 4) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/exceptions/rescue_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/exceptions/rescue_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/exceptions/rescue_spec.rb:55:in `load' | |
| 5) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/extensions/kernel_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/extensions/kernel_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/extensions/kernel_spec.rb:55:in `load' | |
| 6) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/extensions/list_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/extensions/list_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/extensions/list_spec.rb:55:in `load' | |
| 7) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/fields/access_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/fields/access_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/fields/access_spec.rb:55:in `load' | |
| 8) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/interfaces/constant_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/interfaces/constant_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/interfaces/constant_spec.rb:55:in `load' | |
| 9) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/interfaces/implementation_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/interfaces/implementation_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/interfaces/implementation_spec.rb:55:in `load' | |
| 10) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/interfaces/iterable_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/interfaces/iterable_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/interfaces/iterable_spec.rb:55:in `load' | |
| 11) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/methods/basics_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/methods/basics_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/methods/basics_spec.rb:55:in `load' | |
| 12) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/methods/dir_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/methods/dir_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/methods/dir_spec.rb:55:in `load' | |
| 13) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/methods/dispatch_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/methods/dispatch_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/methods/dispatch_spec.rb:55:in `load' | |
| 14) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/methods/error_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/methods/error_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/methods/error_spec.rb:55:in `load' | |
| 15) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/methods/naming_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/methods/naming_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/methods/naming_spec.rb:55:in `load' | |
| 16) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/methods/reflecting_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/methods/reflecting_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/methods/reflecting_spec.rb:55:in `load' | |
| 17) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/object/marshal_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/object/marshal_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/object/marshal_spec.rb:55:in `load' | |
| 18) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/packages/access_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/packages/access_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/packages/access_spec.rb:55:in `load' | |
| 19) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/packages/include_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/packages/include_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/packages/include_spec.rb:55:in `load' | |
| 20) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/reflection/field_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/reflection/field_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/reflection/field_spec.rb:55:in `load' | |
| 21) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/reflection/method_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/reflection/method_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/reflection/method_spec.rb:55:in `load' | |
| 22) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/reify/interfaces_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/reify/interfaces_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/reify/interfaces_spec.rb:55:in `load' | |
| 23) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/types/array_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/types/array_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/types/array_spec.rb:55:in `load' | |
| 24) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/types/coercion_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/types/coercion_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/types/coercion_spec.rb:55:in `load' | |
| 25) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/types/construction_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/types/construction_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/types/construction_spec.rb:55:in `load' | |
| 26) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/types/extension_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/types/extension_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/types/extension_spec.rb:55:in `load' | |
| 27) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/types/retrieval_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/types/retrieval_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/types/retrieval_spec.rb:55:in `load' | |
| 28) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/types/wrapping_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/types/wrapping_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/types/wrapping_spec.rb:55:in `load' | |
| 29) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/utilities/io_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/utilities/io_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/utilities/io_spec.rb:55:in `load' | |
| 30) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/java_integration/utilities/jruby_spec.rb ERROR | |
| LoadError: no such file to load -- /Users/asari/Development/src/jruby/spec/java_integration/../../build/jruby-test-classes | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:2 | |
| /Users/asari/Development/src/jruby/spec/java_integration/spec_helper.rb:1:in `require' | |
| /Users/asari/Development/src/jruby/spec/java_integration/utilities/jruby_spec.rb:1 | |
| /Users/asari/Development/src/jruby/spec/java_integration/utilities/jruby_spec.rb:55:in `load' | |
| 31) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/mspec/spec/matchers/have_class_variable_spec.rb ERROR | |
| NoMethodError: undefined method `shared_examples_for' for main:Object | |
| 32) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/mspec/spec/matchers/have_instance_variable_spec.rb ERROR | |
| NoMethodError: undefined method `shared_examples_for' for main:Object | |
| 33) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/ruby/library/prime/each_spec.rb ERROR | |
| LoadError: No such file to load -- prime.rb | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/each_spec.rb:7:in `load' | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/each_spec.rb:7 | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/each_spec.rb:55:in `load' | |
| 34) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/ruby/library/prime/instance_spec.rb ERROR | |
| LoadError: no such file to load -- prime | |
| /Users/asari/personal/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| /Users/asari/personal/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/instance_spec.rb:2 | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/instance_spec.rb:55:in `load' | |
| 35) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/ruby/library/prime/int_from_prime_division_spec.rb ERROR | |
| LoadError: no such file to load -- prime | |
| /Users/asari/personal/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| /Users/asari/personal/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/int_from_prime_division_spec.rb:2 | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/int_from_prime_division_spec.rb:55:in `load' | |
| 36) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/ruby/library/prime/integer/each_prime_spec.rb ERROR | |
| LoadError: no such file to load -- prime | |
| /Users/asari/personal/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| /Users/asari/personal/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/integer/each_prime_spec.rb:2 | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/integer/each_prime_spec.rb:55:in `load' | |
| 37) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/ruby/library/prime/integer/from_prime_division_spec.rb ERROR | |
| LoadError: no such file to load -- prime | |
| /Users/asari/personal/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| /Users/asari/personal/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/integer/from_prime_division_spec.rb:2 | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/integer/from_prime_division_spec.rb:55:in `load' | |
| 38) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/ruby/library/prime/integer/prime_division_spec.rb ERROR | |
| LoadError: no such file to load -- prime | |
| /Users/asari/personal/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| /Users/asari/personal/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/integer/prime_division_spec.rb:2 | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/integer/prime_division_spec.rb:55:in `load' | |
| 39) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/ruby/library/prime/integer/prime_spec.rb ERROR | |
| LoadError: no such file to load -- prime | |
| /Users/asari/personal/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| /Users/asari/personal/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/integer/prime_spec.rb:2 | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/integer/prime_spec.rb:55:in `load' | |
| 40) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/ruby/library/prime/new_spec.rb ERROR | |
| LoadError: no such file to load -- prime | |
| /Users/asari/personal/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| /Users/asari/personal/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/new_spec.rb:2 | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/new_spec.rb:55:in `load' | |
| 41) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/ruby/library/prime/next_spec.rb ERROR | |
| LoadError: no such file to load -- prime | |
| /Users/asari/personal/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| /Users/asari/personal/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/next_spec.rb:3 | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/next_spec.rb:55:in `load' | |
| 42) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/ruby/library/prime/prime_division_spec.rb ERROR | |
| LoadError: no such file to load -- prime | |
| /Users/asari/personal/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| /Users/asari/personal/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/prime_division_spec.rb:2 | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/prime_division_spec.rb:55:in `load' | |
| 43) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/ruby/library/prime/prime_spec.rb ERROR | |
| LoadError: no such file to load -- prime | |
| /Users/asari/personal/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| /Users/asari/personal/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/prime_spec.rb:2 | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/prime_spec.rb:55:in `load' | |
| 44) | |
| An exception occurred during: loading /Users/asari/Development/src/jruby/spec/ruby/library/prime/succ_spec.rb ERROR | |
| LoadError: no such file to load -- prime | |
| /Users/asari/personal/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| /Users/asari/personal/jruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require' | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/succ_spec.rb:3 | |
| /Users/asari/Development/src/jruby/spec/ruby/library/prime/succ_spec.rb:55:in `load' | |
| Finished in 37.794000 seconds | |
| 3056 files, 253 examples, 8 expectations, 0 failures, 44 errors | |
| surfboard:jruby[git:master]$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment