OlderDiff < 20110414T232755Z < ThisDiff > 20110415T232310Z > NewerDiff
COMMIT [Brian Ford] Temporarily Revert "Add spec for 'self' in binding from within Class/Module.new block." COMMIT [Evan Phoenix] Clearify #binding rules wrt. self COMMIT [Brian Ford] Handle differences in addr for IPV4/V6. COMMIT [Brian Ford] Separate Socket#getservbyname specs. COMMIT [Brian Ford] Added spec stubs for URI. COMMIT [Postmodern] Added specs for URI::FTP#path=, #path and #to_s. COMMIT [Brian Ford] Some tweaks, fixes for URI::FTP specs. COMMIT [Brian Ford] Cleaned up a bunch of 'should' in spec descriptions. COMMIT [Brian Ford] Finally cleaned up trailing whitespace in spec files. COMMIT [Brian Ford] Added spec stubs for standard library Date. COMMIT [Brian Ford] Reapply d7532571 -- eval('self', binding) in a Class.new block. COMMIT [Evan Phoenix] Add rb_cMethod specs. =================================================================== +++ 20110415T232310Z @@ 10117 @@ - returns self for arrays - converts using :to_ary - returns nil when there is no :to_ary +- does not rescue exceptions - checks the result of the conversion /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/array/union_spec.rb @@ 11775 @@ - returns the errno given as optional argument to new SystemCallError#message +- returns the default message when no message is given - returns the message given as an argument to new /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/exception/to_s_spec.rb @@ 12187 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/lstat_spec.rb File.lstat - returns a File::Stat object if the given file exists +- returns a File::Stat objecw when called on an instance of File - raises an Errno::ENOENT if the file does not exist File.lstat @@ 12342 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/reopen_spec.rb /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/setgid_spec.rb File.setgid? +- returns false if the file was just made - returns false if the file does not exist +- returns true when the gid bit is set /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/setuid_spec.rb File.setuid? +- returns false if the file was just made - returns false if the file does not exist +- returns true when the gid bit is set /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/size_spec.rb File.size? @@ 12402 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/atime_spec.rb File::Stat#atime +- returns the atime of a File::Stat object /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/blksize_spec.rb File::Stat#blksize +- returns the blksize of a File::Stat object /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/blockdev_spec.rb File::Stat#blockdev? @@ 12414 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/blocks_spec.rb File::Stat#blocks +- returns the blocks of a File::Stat object /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/chardev_spec.rb File::Stat#chardev? @@ 12424 @@ File::Stat#<=> - is able to compare files by the same modification times - is able to compare files by different modification times +- includes Comparable and #== shows mtime equality between two File::Stat objects /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/ctime_spec.rb File::Stat#ctime +- returns the ctime of a File::Stat object /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/dev_major_spec.rb File::Stat#dev_major @@ 12482 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/gid_spec.rb File::Stat#gid +- returns the group owner attribute of a File::Stat object /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/grpowned_spec.rb File::Stat#grpowned? @@ 12490 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/ino_spec.rb File::Stat#ino +- returns the ino of a File::Stat object /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/inspect_spec.rb File::Stat#inspect @@ 12498 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/mode_spec.rb File::Stat#mode +- returns the mode of a File::Stat object /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/mtime_spec.rb File::Stat#mtime +- returns the mtime of a File::Stat object /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/new_spec.rb File::Stat#initialize @@ 12583 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/uid_spec.rb File::Stat#uid +- returns the owner attribute of a File::Stat object /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/world_readable_spec.rb /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/world_writable_spec.rb @@ 12610 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat_spec.rb File.stat - returns a File::Stat object if the given file exists +- returns a File::Stat objecw when called on an instance of File - raises an Errno::ENOENT if the file does not exist File.stat @@ 12880 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/fixnum/bit_and_spec.rb Fixnum#& - returns self bitwise AND other +- returns self bitwise AND a Bignum - doesn't raise an error if passed a Float out of Fixnum range - converts a Float to an Integer - tries to convert it's int like argument to an Integer using to_int @@ 12890 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/fixnum/bit_or_spec.rb Fixnum#| - returns self bitwise OR other +- returns self bitwise OR a Bignum - doesn't raise an error if passed a Float out of Fixnum range - converts a Float to an Integer - tries to convert the int like argument to an Integer using to_int @@ 12900 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/fixnum/bit_xor_spec.rb Fixnum#^ - returns self bitwise EXCLUSIVE OR other +- returns self bitwise EXCLUSIVE OR a Bignum - doesn't raise an error if passed a Float out of Fixnum range - converts a Float to an Integer - tries to convert the given argument to an Integer using to_int @@ 13600 @@ Hash#initialize - is private - can be used to reset default_proc +- receives the arguments passed to Hash#new - returns self - raises a TypeError if called on a frozen instance @@ 14049 @@ - returns true after reading with sysread - returns true after reading with readlines - returns false on just opened non-empty stream +- does not consume the data from the stream - raises IOError on closed stream - raises IOError on stream closed for reading by close_read - returns true on one-byte stream after single-byte read @@ 15131 @@ - returns a Binding object - encapsulates the execution context properly - raises a NameError on undefined variable +- uses the receiver of #binding as self in the binding +- uses the receiver of #binding as self in a Class.new block /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/kernel/block_given_spec.rb Kernel#block_given? @@ 15322 @@ - allows creating a new class in a binding - allows creating a new class in a binding created by #eval - includes file and line information in syntax error +- sets constants at the toplevel from inside a block - uses the filename of the binding if none is provided +- does not alter the value of __FILE__ in the binding - uses the receiver as self inside the eval - does not pass the block to the method being eval'ed @@ 18840 @@ Regexp.compile given a String - uses the String argument as an unescaped literal to construct a Regexp object +- raises a RegexpError when passed an incorrect regexp - does not set Regexp options if only given one argument - does not set Regexp options if second argument is nil or false - sets options from second argument if it is one of the Fixnum option constants @@ 18934 @@ Regexp.new given a String - uses the String argument as an unescaped literal to construct a Regexp object +- raises a RegexpError when passed an incorrect regexp - does not set Regexp options if only given one argument - does not set Regexp options if second argument is nil or false - sets options from second argument if it is one of the Fixnum option constants @@ 21550 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/thread/backtrace_spec.rb /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/thread/critical_spec.rb Thread.critical= +- is a persistent attribute - allows all non-bool arguments - functions as a critical section - does not change status of other existing threads @@ 21882 @@ - handles string-like second argument - handles string arguments - handles float arguments +- accepts various year ranges - raises an ArgumentError for out of range values - raises ArgumentError for invalid number of arguments - accepts a String or Integer only for arguments @@ 21946 @@ - handles string-like second argument - handles string arguments - handles float arguments +- accepts various year ranges - raises an ArgumentError for out of range values - raises ArgumentError for invalid number of arguments - accepts a String or Integer only for arguments @@ 21982 @@ - handles string-like second argument - handles string arguments - handles float arguments +- accepts various year ranges - raises an ArgumentError for out of range values - raises ArgumentError for invalid number of arguments - accepts a String or Integer only for arguments @@ 22114 @@ - handles string-like second argument - handles string arguments - handles float arguments +- accepts various year ranges - raises an ArgumentError for out of range values - raises ArgumentError for invalid number of arguments - accepts a String or Integer only for arguments @@ 22543 @@ - replaces the original method Defining an 'initialize' method +- sets the method's visibility to private Defining an 'initialize_copy' method +- sets the method's visibility to private An instance method definition with a splat - accepts an unnamed '*' argument @@ 25008 @@ - includes the return value of the passed block when passed a block CGI::HtmlExtension#textarea when passed Hash +- uses the passed Hash as attributes - includes the return value of the passed block when passed a block /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/cgi/initialize_spec.rb @@ 25858 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/conditionvariable/broadcast_spec.rb ConditionVariable#broadcast +- returns self if nothing to broadcast to +- returns self if something is waiting for a broadcast - releases all threads waiting in line for this resource /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/conditionvariable/signal_spec.rb ConditionVariable#signal +- returns self if nothing to signal +- returns self if something is waiting for a signal - releases the first thread waiting in line for this resource /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/conditionvariable/wait_spec.rb @@ 26152 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/add_month_spec.rb Date#>> +- adds the number of months to a Date +- sets the day to the last day of a month if the day doesn't exist +- raise a TypeError when passed a Symbol +- raise a TypeError when passed a String +- raise a TypeError when passed a Date +- raise a TypeError when passed an Object /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/add_spec.rb Date#+ +- adds the number of days to a Date +- adds a negative number of days to a Date - raises a TypeError when passed a Symbol - raises a TypeError when passed a String +- raises a TypeError when passed a Date +- raises a TypeError when passed an Object +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/ajd_spec.rb Date#ajd - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/ajd_to_amjd_spec.rb +Date.ajd_to_amjd - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/ajd_to_jd_spec.rb +Date.ajd_to_jd - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/amjd_spec.rb Date#amjd - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/amjd_to_ajd_spec.rb +Date.amjd_to_ajd - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/append_spec.rb Date#<< - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/asctime_spec.rb +Date#asctime - needs to be reviewed for spec completeness /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/boat_spec.rb Date#<=> +- returns 0 when two dates are equal +- returns -1 when self is less than another date +- returns -1 when self is less than a Numeric +- returns 1 when self is greater than another date +- returns 1 when self is greater than a Numeric +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/case_compare_spec.rb Date#=== - needs to be reviewed for spec completeness @@ 26220 @@ - should be able to determine if a date is valid - should be able to handle negative months and days +Date.civil - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/civil_to_jd_spec.rb +Date.civil_to_jd - needs to be reviewed for spec completeness /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/commercial_spec.rb @@ 26238 @@ - should be able to determine if the date is a valid commercial date - should be able to handle negative week and day numbers +Date.commercial - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/commercial_to_jd_spec.rb +Date.commercial_to_jd - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/comparison_spec.rb Date#<=> - needs to be reviewed for spec completeness /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/constants_spec.rb Date constants +- defines ITALY +- defines ENGLAND +- defines JULIAN +- defines GREGORIAN +- defines MONTHNAMES +- defines DAYNAMES +- defines ABBR_MONTHNAMES /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/conversions_spec.rb Date#new_start +- converts a date object into another with a new calendar reform Date#italy +- converts a date object into another with the Italian calendar reform Date#england +- converts a date object into another with the English calendar reform Date#julian +- converts a date object into another with the Julian calendar Date#gregorian +- converts a date object into another with the Gregorian calendar Date#ordinal_to_jd +- converts an ordinal date (year-day) to a Julian day number Date#jd_to_ordinal +- converts a Julian day number into an ordinal date Date#civil_to_jd +- converts a civil date into a Julian day number Date#jd_to_civil +- converts a Julian day into a civil date Date#commercial_to_jd +- converts a commercial date (year - week - day of week) into a Julian day number Date#jd_to_commercial +- converts a Julian day number into a commercial date Date#ajd_to_jd +- converts a Astronomical Julian day number into a Julian day number Date#jd_to_ajd +- converts a Julian day number into a Astronomical Julian day number Date#day_fraction_to_time +- converts a day fraction into time Date#time_to_day_fraction +- converts a time into a day fraction Date#amjd_to_ajd +- converts Astronomical Modified Julian day numbers into Astronomical Julian day numbers Date#ajd_to_amjd +- converts Astronomical Julian day numbers into Astronomical Modified Julian day numbers Date#mjd_to_jd +- converts Modified Julian day numbers into Julian day numbers Date#jd_to_mjd +- converts Julian day numbers into Modified Julian day numbers Date#ld_to_jd +- converts the number of days since the Gregorian calendar in Italy into Julian day numbers Date#jd_to_ld +- converts Julian day numbers into the number of days since the Gregorian calendar in Italy Date#jd_to_wday +- converts a Julian day number into a week day number +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/ctime_spec.rb +Date#ctime - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/cwday_spec.rb Date#cwday - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/cweek_spec.rb Date#cweek - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/cwyear_spec.rb Date#cwyear - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/day_fraction_spec.rb Date#day_fraction - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/day_fraction_to_time_spec.rb +Date.day_fraction_to_time - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/day_spec.rb +Date#day - needs to be reviewed for spec completeness /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/downto_spec.rb Date#downto +- creates earlier dates when passed a negative step +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/england_spec.rb Date#england - needs to be reviewed for spec completeness /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/eql_spec.rb Date#eql? +- returns true if self is equal to another date +- returns false if self is not equal to another date +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/exist1_spec.rb +Date.exist1? - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/exist2_spec.rb +Date.exist2? - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/exist3_spec.rb +Date.exist3? - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/exist_spec.rb +Date.exist? - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/existw_spec.rb +Date.existw? - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/format/bag/method_missing_spec.rb +Date::Format::Bag#method_missing - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/format/bag/to_hash_spec.rb +Date::Format::Bag#to_hash - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/gregorian_leap_spec.rb +Date.gregorian_leap? - needs to be reviewed for spec completeness /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/gregorian_spec.rb Date#gregorian? +- marks a day before the calendar reform as Julian +- marks a day after the calendar reform as Julian Date#gregorian_leap? +- returns true if a year is a leap year in the Gregorian calendar +- returns false if a year is not a leap year in the Gregorian calendar +Date.gregorian? - needs to be reviewed for spec completeness /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/hash_spec.rb Date#hash +- returns the same value for equal dates +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/infinity/abs_spec.rb +Date::Infinity#abs - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/infinity/coerce_spec.rb +Date::Infinity#coerce - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/infinity/comparison_spec.rb +Date::Infinity#<=> - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/infinity/d_spec.rb +Date::Infinity#d - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/infinity/finite_spec.rb +Date::Infinity#finite? - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/infinity/infinite_spec.rb +Date::Infinity#infinite? - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/infinity/nan_spec.rb +Date::Infinity#nan? - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/infinity/uminus_spec.rb +Date::Infinity#-@ - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/infinity/uplus_spec.rb +Date::Infinity#+@ - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/infinity/zero_spec.rb +Date::Infinity#zero? - needs to be reviewed for spec completeness /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/infinity_spec.rb @@ 26466 @@ - should be able to use -@ and +@ for Date::Infinity - should be able to coerce a Date::Infinity object +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/inspect_spec.rb +Date#inspect - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/italy_spec.rb Date#italy - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/jd_spec.rb Date#jd - needs to be reviewed for spec completeness +Date.jd - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/jd_to_ajd_spec.rb +Date.jd_to_ajd - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/jd_to_civil_spec.rb +Date.jd_to_civil - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/jd_to_commercial_spec.rb +Date.jd_to_commercial - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/jd_to_ld_spec.rb +Date.jd_to_ld - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/jd_to_mjd_spec.rb +Date.jd_to_mjd - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/jd_to_ordinal_spec.rb +Date.jd_to_ordinal - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/jd_to_wday_spec.rb +Date.jd_to_wday - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/julian_leap_spec.rb +Date.julian_leap? - needs to be reviewed for spec completeness /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/julian_spec.rb @@ 26528 @@ Date#valid_jd? - should be able to determine if a day number is a valid Julian day number, true for all numbers +Date.julian? - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/ld_spec.rb Date#ld - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/ld_to_jd_spec.rb +Date.ld_to_jd - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/leap_spec.rb +Date#leap? - needs to be reviewed for spec completeness +Date.leap? - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/mday_spec.rb Date#mday - needs to be reviewed for spec completeness @@ 26563 @@ - should be able to compute the different between two dates - should raise an error on non numeric parameters +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/mjd_spec.rb Date#mjd - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/mjd_to_jd_spec.rb +Date.mjd_to_jd - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/mon_spec.rb Date#mon - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/month_spec.rb +Date#month - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/new0_spec.rb +Date.new0 - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/new1_spec.rb +Date.new1 - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/new2_spec.rb +Date.new2 - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/new3_spec.rb +Date.new3 - needs to be reviewed for spec completeness /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/new_spec.rb @@ 26603 @@ - creats a Date for different calendar reform dates - doesn't blow up (illegal instruction and segfault, respectively) when fed huge numbers +Date.new - needs to be reviewed for spec completeness +Date.new! - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/new_start_spec.rb Date#new_start - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/newsg_spec.rb +Date#newsg - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/neww_spec.rb +Date.neww - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/next_spec.rb +Date#next - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/ns_spec.rb +Date#ns? - needs to be reviewed for spec completeness +Date.ns? - needs to be reviewed for spec completeness /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/ordinal_spec.rb @@ 26640 @@ - should be able to determine if the date is a valid ordinal date - should be able to handle negative day numbers +Date.ordinal - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/ordinal_to_jd_spec.rb +Date.ordinal_to_jd - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/os_spec.rb +Date#os? - needs to be reviewed for spec completeness +Date.os? - needs to be reviewed for spec completeness /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/parse_spec.rb @@ 26719 @@ - parses a YY.MM.DD string into a Date object - parses a YY.MM.DD string into a Date object using the year digits as 20XX +Date.parse - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/plus_spec.rb Date#+ - needs to be reviewed for spec completeness @@ 26732 @@ - should be able to compute the difference between two dates - should be able to compare to another numeric +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/right_shift_spec.rb Date#>> - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/sg_spec.rb +Date#sg - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/start_spec.rb +Date#start - needs to be reviewed for spec completeness /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/step_spec.rb @@ 26823 @@ - parses a date given MM/DD/YY - parses a date given in full notation +Date.strptime - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/succ_spec.rb +Date#succ - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/time_to_day_fraction_spec.rb +Date.time_to_day_fraction - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/to_s_spec.rb +Date#to_s - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/today_spec.rb +Date.today - needs to be reviewed for spec completeness /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/upto_spec.rb Date#upto +- returns future dates for the default step value +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/valid_civil_spec.rb +Date.valid_civil? - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/valid_commercial_spec.rb +Date.valid_commercial? - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/valid_date_spec.rb +Date.valid_date? - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/valid_jd_spec.rb +Date.valid_jd? - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/valid_ordinal_spec.rb +Date.valid_ordinal? - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/valid_time_spec.rb +Date.valid_time? - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/wday_spec.rb Date#wday - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/yday_spec.rb Date#yday - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/year_spec.rb Date#year - needs to be reviewed for spec completeness +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/zone_to_diff_spec.rb +Date.zone_to_diff - needs to be reviewed for spec completeness /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/datetime/_strptime_spec.rb @@ 27506 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/drb/remove_server_spec.rb /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/drb/start_service_spec.rb DRb.start_service +- runs a basic remote call +- runs a basic remote call passing a block /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/drb/stop_service_spec.rb DRb.stop_service +- clears the port so a new server can start /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/drb/thread_spec.rb /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/drb/to_id_spec.rb @@ 32961 @@ - returns self for arrays - converts using :to_ary - returns nil when there is no :to_ary +- does not rescue exceptions - checks the result of the conversion @@ 37452 @@ - returns the errno given as optional argument to new SystemCallError#message +- returns the default message when no message is given - returns the message given as an argument to new @@ 38200 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/lstat_spec.rb File.lstat - returns a File::Stat object if the given file exists +- returns a File::Stat objecw when called on an instance of File - raises an Errno::ENOENT if the file does not exist File.lstat @@ 38475 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/setgid_spec.rb File.setgid? +- returns false if the file was just made - returns false if the file does not exist +- returns true when the gid bit is set Finished in <t> seconds @@ 38489 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/setuid_spec.rb File.setuid? +- returns false if the file was just made - returns false if the file does not exist +- returns true when the gid bit is set Finished in <t> seconds @@ 38575 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/atime_spec.rb File::Stat#atime +- returns the atime of a File::Stat object Finished in <t> seconds @@ 38587 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/blksize_spec.rb File::Stat#blksize +- returns the blksize of a File::Stat object Finished in <t> seconds @@ 38611 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/blocks_spec.rb File::Stat#blocks +- returns the blocks of a File::Stat object Finished in <t> seconds @@ 38637 @@ File::Stat#<=> - is able to compare files by the same modification times - is able to compare files by different modification times +- includes Comparable and #== shows mtime equality between two File::Stat objects Finished in <t> seconds @@ 38649 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/ctime_spec.rb File::Stat#ctime +- returns the ctime of a File::Stat object Finished in <t> seconds @@ 38775 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/gid_spec.rb File::Stat#gid +- returns the group owner attribute of a File::Stat object Finished in <t> seconds @@ 38799 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/ino_spec.rb File::Stat#ino +- returns the ino of a File::Stat object Finished in <t> seconds @@ 38823 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/mode_spec.rb File::Stat#mode +- returns the mode of a File::Stat object Finished in <t> seconds @@ 38835 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/mtime_spec.rb File::Stat#mtime +- returns the mtime of a File::Stat object Finished in <t> seconds @@ 39044 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/uid_spec.rb File::Stat#uid +- returns the owner attribute of a File::Stat object Finished in <t> seconds @@ 39119 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat_spec.rb File.stat - returns a File::Stat object if the given file exists +- returns a File::Stat objecw when called on an instance of File - raises an Errno::ENOENT if the file does not exist File.stat @@ 39701 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/fixnum/bit_and_spec.rb Fixnum#& - returns self bitwise AND other +- returns self bitwise AND a Bignum - doesn't raise an error if passed a Float out of Fixnum range - converts a Float to an Integer - tries to convert it's int like argument to an Integer using to_int @@ 39719 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/fixnum/bit_or_spec.rb Fixnum#| - returns self bitwise OR other +- returns self bitwise OR a Bignum - doesn't raise an error if passed a Float out of Fixnum range - converts a Float to an Integer - tries to convert the int like argument to an Integer using to_int @@ 39737 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/fixnum/bit_xor_spec.rb Fixnum#^ - returns self bitwise EXCLUSIVE OR other +- returns self bitwise EXCLUSIVE OR a Bignum - doesn't raise an error if passed a Float out of Fixnum range - converts a Float to an Integer - tries to convert the given argument to an Integer using to_int @@ 41651 @@ Hash#initialize - is private - can be used to reset default_proc +- receives the arguments passed to Hash#new - returns self - raises a TypeError if called on a frozen instance @@ 42660 @@ - returns true after reading with sysread - returns true after reading with readlines - returns false on just opened non-empty stream +- does not consume the data from the stream - raises IOError on closed stream - raises IOError on stream closed for reading by close_read - returns true on one-byte stream after single-byte read @@ 44425 @@ - returns a Binding object - encapsulates the execution context properly - raises a NameError on undefined variable +- uses the receiver of #binding as self in the binding +- uses the receiver of #binding as self in a Class.new block Finished in <t> seconds @@ 44838 @@ - allows creating a new class in a binding - allows creating a new class in a binding created by #eval - includes file and line information in syntax error +- sets constants at the toplevel from inside a block - uses the filename of the binding if none is provided +- does not alter the value of __FILE__ in the binding - uses the receiver as self inside the eval - does not pass the block to the method being eval'ed @@ 52581 @@ Regexp.compile given a String - uses the String argument as an unescaped literal to construct a Regexp object +- raises a RegexpError when passed an incorrect regexp - does not set Regexp options if only given one argument - does not set Regexp options if second argument is nil or false - sets options from second argument if it is one of the Fixnum option constants @@ 52795 @@ Regexp.new given a String - uses the String argument as an unescaped literal to construct a Regexp object +- raises a RegexpError when passed an incorrect regexp - does not set Regexp options if only given one argument - does not set Regexp options if second argument is nil or false - sets options from second argument if it is one of the Fixnum option constants @@ 57409 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/thread/critical_spec.rb Thread.critical= +- is a persistent attribute - allows all non-bool arguments - functions as a critical section - does not change status of other existing threads @@ 58185 @@ - handles string-like second argument - handles string arguments - handles float arguments +- accepts various year ranges - raises an ArgumentError for out of range values - raises ArgumentError for invalid number of arguments - accepts a String or Integer only for arguments @@ 58337 @@ - handles string-like second argument - handles string arguments - handles float arguments +- accepts various year ranges - raises an ArgumentError for out of range values - raises ArgumentError for invalid number of arguments - accepts a String or Integer only for arguments @@ 58413 @@ - handles string-like second argument - handles string arguments - handles float arguments +- accepts various year ranges - raises an ArgumentError for out of range values - raises ArgumentError for invalid number of arguments - accepts a String or Integer only for arguments @@ 58761 @@ - handles string-like second argument - handles string arguments - handles float arguments +- accepts various year ranges - raises an ArgumentError for out of range values - raises ArgumentError for invalid number of arguments - accepts a String or Integer only for arguments @@ 59462 @@ - replaces the original method Defining an 'initialize' method +- sets the method's visibility to private Defining an 'initialize_copy' method +- sets the method's visibility to private An instance method definition with a splat - accepts an unnamed '*' argument @@ 64126 @@ - includes the return value of the passed block when passed a block CGI::HtmlExtension#textarea when passed Hash +- uses the passed Hash as attributes - includes the return value of the passed block when passed a block @@ 65916 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/conditionvariable/broadcast_spec.rb ConditionVariable#broadcast +- returns self if nothing to broadcast to +- returns self if something is waiting for a broadcast - releases all threads waiting in line for this resource @@ 65930 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/conditionvariable/signal_spec.rb ConditionVariable#signal +- returns self if nothing to signal +- returns self if something is waiting for a signal - releases the first thread waiting in line for this resource @@ 66674 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/add_month_spec.rb Date#>> +- adds the number of months to a Date +- sets the day to the last day of a month if the day doesn't exist +- raise a TypeError when passed a Symbol +- raise a TypeError when passed a String +- raise a TypeError when passed a Date +- raise a TypeError when passed an Object Finished in <t> seconds @@ 66691 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/add_spec.rb Date#+ +- adds the number of days to a Date +- adds a negative number of days to a Date - raises a TypeError when passed a Symbol - raises a TypeError when passed a String +- raises a TypeError when passed a Date +- raises a TypeError when passed an Object Finished in <t> seconds 1 file, 6 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/ajd_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/ajd_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/ajd_spec.rb Date#ajd - needs to be reviewed for spec completeness @@ 66714 @@ Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/ajd_to_amjd_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/ajd_to_amjd_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/ajd_to_amjd_spec.rb +Date.ajd_to_amjd - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/ajd_to_jd_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/ajd_to_jd_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/ajd_to_jd_spec.rb +Date.ajd_to_jd - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/amjd_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/amjd_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/amjd_spec.rb Date#amjd - needs to be reviewed for spec completeness @@ 66750 @@ Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/amjd_to_ajd_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/amjd_to_ajd_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/amjd_to_ajd_spec.rb +Date.amjd_to_ajd - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/append_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/append_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/append_spec.rb Date#<< - needs to be reviewed for spec completeness @@ 66774 @@ Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/asctime_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/asctime_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/asctime_spec.rb +Date#asctime - needs to be reviewed for spec completeness @@ 66792 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/boat_spec.rb Date#<=> +- returns 0 when two dates are equal +- returns -1 when self is less than another date +- returns -1 when self is less than a Numeric +- returns 1 when self is greater than another date +- returns 1 when self is greater than a Numeric Finished in <t> seconds 1 file, 5 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/case_compare_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/case_compare_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/case_compare_spec.rb Date#=== - needs to be reviewed for spec completeness @@ 66830 @@ - should be able to determine if a date is valid - should be able to handle negative months and days +Date.civil - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 7 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/civil_to_jd_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/civil_to_jd_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/civil_to_jd_spec.rb +Date.civil_to_jd - needs to be reviewed for spec completeness @@ 66864 @@ - should be able to determine if the date is a valid commercial date - should be able to handle negative week and day numbers +Date.commercial - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 6 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/commercial_to_jd_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/commercial_to_jd_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/commercial_to_jd_spec.rb +Date.commercial_to_jd - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/comparison_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/comparison_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/comparison_spec.rb Date#<=> - needs to be reviewed for spec completeness @@ 66901 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/constants_spec.rb Date constants +- defines ITALY +- defines ENGLAND +- defines JULIAN +- defines GREGORIAN +- defines MONTHNAMES +- defines DAYNAMES +- defines ABBR_MONTHNAMES Finished in <t> seconds @@ 66919 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/conversions_spec.rb Date#new_start +- converts a date object into another with a new calendar reform Date#italy +- converts a date object into another with the Italian calendar reform Date#england +- converts a date object into another with the English calendar reform Date#julian +- converts a date object into another with the Julian calendar Date#gregorian +- converts a date object into another with the Gregorian calendar Date#ordinal_to_jd +- converts an ordinal date (year-day) to a Julian day number Date#jd_to_ordinal +- converts a Julian day number into an ordinal date Date#civil_to_jd +- converts a civil date into a Julian day number Date#jd_to_civil +- converts a Julian day into a civil date Date#commercial_to_jd +- converts a commercial date (year - week - day of week) into a Julian day number Date#jd_to_commercial +- converts a Julian day number into a commercial date Date#ajd_to_jd +- converts a Astronomical Julian day number into a Julian day number Date#jd_to_ajd +- converts a Julian day number into a Astronomical Julian day number Date#day_fraction_to_time +- converts a day fraction into time Date#time_to_day_fraction +- converts a time into a day fraction Date#amjd_to_ajd +- converts Astronomical Modified Julian day numbers into Astronomical Julian day numbers Date#ajd_to_amjd +- converts Astronomical Julian day numbers into Astronomical Modified Julian day numbers Date#mjd_to_jd +- converts Modified Julian day numbers into Julian day numbers Date#jd_to_mjd +- converts Julian day numbers into Modified Julian day numbers Date#ld_to_jd +- converts the number of days since the Gregorian calendar in Italy into Julian day numbers Date#jd_to_ld +- converts Julian day numbers into the number of days since the Gregorian calendar in Italy Date#jd_to_wday +- converts a Julian day number into a week day number Finished in <t> seconds 1 file, 22 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/ctime_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/ctime_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/ctime_spec.rb +Date#ctime - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/cwday_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/cwday_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/cwday_spec.rb Date#cwday - needs to be reviewed for spec completeness @@ 67012 @@ Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/cweek_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/cweek_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/cweek_spec.rb Date#cweek - needs to be reviewed for spec completeness @@ 67024 @@ Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/cwyear_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/cwyear_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/cwyear_spec.rb Date#cwyear - needs to be reviewed for spec completeness @@ 67036 @@ Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/day_fraction_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/day_fraction_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/day_fraction_spec.rb Date#day_fraction - needs to be reviewed for spec completeness @@ 67048 @@ Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/day_fraction_to_time_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/day_fraction_to_time_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/day_fraction_to_time_spec.rb +Date.day_fraction_to_time - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/day_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/day_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/day_spec.rb +Date#day - needs to be reviewed for spec completeness @@ 67078 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/downto_spec.rb Date#downto +- creates earlier dates when passed a negative step Finished in <t> seconds 1 file, 1 example, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/england_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/england_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/england_spec.rb Date#england - needs to be reviewed for spec completeness @@ 67102 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/eql_spec.rb Date#eql? +- returns true if self is equal to another date +- returns false if self is not equal to another date Finished in <t> seconds 1 file, 2 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/exist1_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/exist1_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/exist1_spec.rb +Date.exist1? - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/exist2_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/exist2_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/exist2_spec.rb +Date.exist2? - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/exist3_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/exist3_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/exist3_spec.rb +Date.exist3? - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/exist_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/exist_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/exist_spec.rb +Date.exist? - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/existw_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/existw_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/existw_spec.rb +Date.existw? - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/format/bag/method_missing_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/format/bag/method_missing_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/format/bag/method_missing_spec.rb +Date::Format::Bag#method_missing - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/format/bag/to_hash_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/format/bag/to_hash_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/format/bag/to_hash_spec.rb +Date::Format::Bag#to_hash - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/gregorian_leap_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/gregorian_leap_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/gregorian_leap_spec.rb +Date.gregorian_leap? - needs to be reviewed for spec completeness @@ 67211 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/gregorian_spec.rb Date#gregorian? +- marks a day before the calendar reform as Julian +- marks a day after the calendar reform as Julian Date#gregorian_leap? +- returns true if a year is a leap year in the Gregorian calendar +- returns false if a year is not a leap year in the Gregorian calendar +Date.gregorian? - needs to be reviewed for spec completeness @@ 67231 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/hash_spec.rb Date#hash +- returns the same value for equal dates Finished in <t> seconds 1 file, 1 example, <num> expectation, 0 failures, 0 errors +== rubyspec/library/date/infinity/abs_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/infinity/abs_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/infinity/abs_spec.rb +Date::Infinity#abs - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/infinity/coerce_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/infinity/coerce_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/infinity/coerce_spec.rb +Date::Infinity#coerce - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/infinity/comparison_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/infinity/comparison_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/infinity/comparison_spec.rb +Date::Infinity#<=> - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/infinity/d_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/infinity/d_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/infinity/d_spec.rb +Date::Infinity#d - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/infinity/finite_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/infinity/finite_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/infinity/finite_spec.rb +Date::Infinity#finite? - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/infinity/infinite_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/infinity/infinite_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/infinity/infinite_spec.rb +Date::Infinity#infinite? - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/infinity/nan_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/infinity/nan_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/infinity/nan_spec.rb +Date::Infinity#nan? - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/infinity/uminus_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/infinity/uminus_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/infinity/uminus_spec.rb +Date::Infinity#-@ - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/infinity/uplus_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/infinity/uplus_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/infinity/uplus_spec.rb +Date::Infinity#+@ - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/infinity/zero_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/infinity/zero_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/infinity/zero_spec.rb +Date::Infinity#zero? - needs to be reviewed for spec completeness @@ 67376 @@ Finished in <t> seconds 1 file, 8 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/inspect_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/inspect_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/inspect_spec.rb +Date#inspect - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/italy_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/italy_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/italy_spec.rb Date#italy - needs to be reviewed for spec completeness @@ 67400 @@ Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/jd_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/jd_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/jd_spec.rb Date#jd - needs to be reviewed for spec completeness +Date.jd - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/jd_to_ajd_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/jd_to_ajd_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/jd_to_ajd_spec.rb +Date.jd_to_ajd - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/jd_to_civil_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/jd_to_civil_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/jd_to_civil_spec.rb +Date.jd_to_civil - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/jd_to_commercial_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/jd_to_commercial_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/jd_to_commercial_spec.rb +Date.jd_to_commercial - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/jd_to_ld_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/jd_to_ld_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/jd_to_ld_spec.rb +Date.jd_to_ld - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/jd_to_mjd_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/jd_to_mjd_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/jd_to_mjd_spec.rb +Date.jd_to_mjd - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/jd_to_ordinal_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/jd_to_ordinal_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/jd_to_ordinal_spec.rb +Date.jd_to_ordinal - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/jd_to_wday_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/jd_to_wday_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/jd_to_wday_spec.rb +Date.jd_to_wday - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/julian_leap_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/julian_leap_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/julian_leap_spec.rb +Date.julian_leap? - needs to be reviewed for spec completeness @@ 67530 @@ Date#valid_jd? - should be able to determine if a day number is a valid Julian day number, true for all numbers +Date.julian? - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 6 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/ld_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/ld_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/ld_spec.rb Date#ld - needs to be reviewed for spec completeness @@ 67549 @@ Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/ld_to_jd_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/ld_to_jd_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/ld_to_jd_spec.rb +Date.ld_to_jd - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/leap_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/leap_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/leap_spec.rb +Date#leap? - needs to be reviewed for spec completeness +Date.leap? - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/mday_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/mday_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/mday_spec.rb Date#mday - needs to be reviewed for spec completeness @@ 67617 @@ Finished in <t> seconds 1 file, 4 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/mjd_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/mjd_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/mjd_spec.rb Date#mjd - needs to be reviewed for spec completeness @@ 67629 @@ Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/mjd_to_jd_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/mjd_to_jd_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/mjd_to_jd_spec.rb +Date.mjd_to_jd - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/mon_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/mon_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/mon_spec.rb Date#mon - needs to be reviewed for spec completeness @@ 67653 @@ Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/month_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/month_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/month_spec.rb +Date#month - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/new0_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/new0_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/new0_spec.rb +Date.new0 - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/new1_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/new1_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/new1_spec.rb +Date.new1 - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/new2_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/new2_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/new2_spec.rb +Date.new2 - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/new3_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/new3_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/new3_spec.rb +Date.new3 - needs to be reviewed for spec completeness @@ 67725 @@ - creats a Date for different calendar reform dates - doesn't blow up (illegal instruction and segfault, respectively) when fed huge numbers +Date.new - needs to be reviewed for spec completeness +Date.new! - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 5 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/new_start_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/new_start_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/new_start_spec.rb Date#new_start - needs to be reviewed for spec completeness @@ 67747 @@ Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/newsg_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/newsg_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/newsg_spec.rb +Date#newsg - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/neww_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/neww_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/neww_spec.rb +Date.neww - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/next_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/next_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/next_spec.rb +Date#next - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/ns_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/ns_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/ns_spec.rb +Date#ns? - needs to be reviewed for spec completeness +Date.ns? - needs to be reviewed for spec completeness @@ 67810 @@ - should be able to determine if the date is a valid ordinal date - should be able to handle negative day numbers +Date.ordinal - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 3 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/ordinal_to_jd_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/ordinal_to_jd_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/ordinal_to_jd_spec.rb +Date.ordinal_to_jd - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/os_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/os_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/os_spec.rb +Date#os? - needs to be reviewed for spec completeness +Date.os? - needs to be reviewed for spec completeness @@ 67913 @@ - parses a YY.MM.DD string into a Date object - parses a YY.MM.DD string into a Date object using the year digits as 20XX +Date.parse - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 50 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/plus_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/plus_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/plus_spec.rb Date#+ - needs to be reviewed for spec completeness @@ 67946 @@ Finished in <t> seconds 1 file, 3 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/right_shift_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/right_shift_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/right_shift_spec.rb Date#>> - needs to be reviewed for spec completeness @@ 67958 @@ Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/sg_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/sg_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/sg_spec.rb +Date#sg - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/start_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/start_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/start_spec.rb +Date#start - needs to be reviewed for spec completeness @@ 68081 @@ - parses a date given MM/DD/YY - parses a date given in full notation +Date.strptime - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 25 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/succ_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/succ_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/succ_spec.rb +Date#succ - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/time_to_day_fraction_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/time_to_day_fraction_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/time_to_day_fraction_spec.rb +Date.time_to_day_fraction - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/to_s_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/to_s_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/to_s_spec.rb +Date#to_s - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/today_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/today_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/today_spec.rb +Date.today - needs to be reviewed for spec completeness @@ 68142 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/upto_spec.rb Date#upto +- returns future dates for the default step value Finished in <t> seconds 1 file, 1 example, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/valid_civil_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/valid_civil_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/valid_civil_spec.rb +Date.valid_civil? - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/valid_commercial_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/valid_commercial_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/valid_commercial_spec.rb +Date.valid_commercial? - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/valid_date_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/valid_date_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/valid_date_spec.rb +Date.valid_date? - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/valid_jd_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/valid_jd_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/valid_jd_spec.rb +Date.valid_jd? - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/valid_ordinal_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/valid_ordinal_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/valid_ordinal_spec.rb +Date.valid_ordinal? - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/valid_time_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/valid_time_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/valid_time_spec.rb +Date.valid_time? - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/wday_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/wday_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/wday_spec.rb Date#wday - needs to be reviewed for spec completeness @@ 68232 @@ Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/yday_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/yday_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/yday_spec.rb Date#yday - needs to be reviewed for spec completeness @@ 68244 @@ Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/year_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/year_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/year_spec.rb Date#year - needs to be reviewed for spec completeness @@ 68256 @@ Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/date/zone_to_diff_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/date/zone_to_diff_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/zone_to_diff_spec.rb +Date.zone_to_diff - needs to be reviewed for spec completeness @@ 70136 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/drb/start_service_spec.rb DRb.start_service +- runs a basic remote call +- runs a basic remote call passing a block Finished in <t> seconds @@ 70149 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/drb/stop_service_spec.rb DRb.stop_service +- clears the port so a new server can start Finished in <t> seconds @@ 82966 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/socket/socket/getservbyname_spec.rb Socket#getservbyname +- returns the port for service 'http' +- returns the port for service 'http' with protocol 'tcp' +- returns the port for service 'domain' with protocol 'udp' +- returns the port for service 'daytime' - raises a SocketError when the service or port is invalid @@ 85973 @@ 1 file, 7 examples, <num> expectations, 1 failure, 0 errors exit 1 failed(rubyspec/library/uri/equality_spec.rb) +== rubyspec/library/uri/escape/decode_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/escape/decode_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/escape/decode_spec.rb +URI::Escape#decode - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/escape/encode_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/escape/encode_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/escape/encode_spec.rb +URI::Escape#encode - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/escape/escape_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/escape/escape_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/escape/escape_spec.rb +URI::Escape#escape - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/escape/unescape_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/escape/unescape_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/escape/unescape_spec.rb +URI::Escape#unescape - needs to be reviewed for spec completeness @@ 86040 @@ Finished in <t> seconds 1 file, 8 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/ftp/build_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/ftp/build_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/ftp/build_spec.rb +URI::FTP.build - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/ftp/merge_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/ftp/merge_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/ftp/merge_spec.rb +URI::FTP#merge - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/ftp/new2_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/ftp/new2_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/ftp/new2_spec.rb +URI::FTP.new2 - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/ftp/path_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/ftp/path_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/ftp/path_spec.rb +URI::FTP#path= +- requires a leading / +- strips the leading / +URI::FTP#path +- unescapes the leading / Finished in <t> seconds 1 file, 3 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/ftp/set_typecode_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/ftp/set_typecode_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/ftp/set_typecode_spec.rb +URI::FTP#set_typecode - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/ftp/to_s_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/ftp/to_s_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/ftp/to_s_spec.rb +URI::FTP#to_s +- does not escape the leading / Finished in <t> seconds 1 file, 1 example, <num> expectation, 0 failures, 0 errors +== rubyspec/library/uri/ftp/typecode_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/ftp/typecode_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/ftp/typecode_spec.rb +URI::FTP#typecode - needs to be reviewed for spec completeness +URI::FTP#typecode= - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/absolute_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/absolute_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/absolute_spec.rb +URI::Generic#absolute - needs to be reviewed for spec completeness +URI::Generic#absolute? - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/build2_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/build2_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/build2_spec.rb +URI::Generic.build2 - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/build_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/build_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/build_spec.rb +URI::Generic.build - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/coerce_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/coerce_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/coerce_spec.rb +URI::Generic#coerce - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/component_ary_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/component_ary_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/component_ary_spec.rb +URI::Generic#component_ary - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/component_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/component_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/component_spec.rb +URI::Generic#component - needs to be reviewed for spec completeness +URI::Generic.component - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/default_port_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/default_port_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/default_port_spec.rb +URI::Generic#default_port - needs to be reviewed for spec completeness +URI::Generic.default_port - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/eql_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/eql_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/eql_spec.rb +URI::Generic#eql? - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/equal_value_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/equal_value_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/equal_value_spec.rb +URI::Generic#== - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/fragment_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/fragment_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/fragment_spec.rb +URI::Generic#fragment - needs to be reviewed for spec completeness +URI::Generic#fragment= - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/hash_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/hash_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/hash_spec.rb +URI::Generic#hash - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/hierarchical_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/hierarchical_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/hierarchical_spec.rb +URI::Generic#hierarchical? - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/host_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/host_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/host_spec.rb +URI::Generic#host - needs to be reviewed for spec completeness +URI::Generic#host= - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/inspect_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/inspect_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/inspect_spec.rb +URI::Generic#inspect - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/merge_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/merge_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/merge_spec.rb +URI::Generic#merge - needs to be reviewed for spec completeness +URI::Generic#merge! - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/minus_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/minus_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/minus_spec.rb +URI::Generic#- - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/normalize_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/normalize_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/normalize_spec.rb +URI::Generic#normalize - needs to be reviewed for spec completeness +URI::Generic#normalize! - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/opaque_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/opaque_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/opaque_spec.rb +URI::Generic#opaque - needs to be reviewed for spec completeness +URI::Generic#opaque= - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/password_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/password_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/password_spec.rb +URI::Generic#password - needs to be reviewed for spec completeness +URI::Generic#password= - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/path_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/path_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/path_spec.rb +URI::Generic#path - needs to be reviewed for spec completeness +URI::Generic#path= - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/plus_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/plus_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/plus_spec.rb +URI::Generic#+ - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/port_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/port_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/port_spec.rb +URI::Generic#port - needs to be reviewed for spec completeness +URI::Generic#port= - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/query_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/query_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/query_spec.rb +URI::Generic#query - needs to be reviewed for spec completeness +URI::Generic#query= - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/registry_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/registry_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/registry_spec.rb +URI::Generic#registry - needs to be reviewed for spec completeness +URI::Generic#registry= - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/relative_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/relative_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/relative_spec.rb +URI::Generic#relative? - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/route_from_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/route_from_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/route_from_spec.rb +URI::Generic#route_from - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/route_to_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/route_to_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/route_to_spec.rb +URI::Generic#route_to - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/scheme_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/scheme_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/scheme_spec.rb +URI::Generic#scheme - needs to be reviewed for spec completeness +URI::Generic#scheme= - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/select_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/select_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/select_spec.rb +URI::Generic#select - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/set_fragment_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/set_fragment_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/set_fragment_spec.rb +URI::Generic#set_fragment - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/set_host_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/set_host_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/set_host_spec.rb +URI::Generic#set_host - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/set_opaque_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/set_opaque_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/set_opaque_spec.rb +URI::Generic#set_opaque - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/set_password_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/set_password_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/set_password_spec.rb +URI::Generic#set_password - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/set_path_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/set_path_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/set_path_spec.rb +URI::Generic#set_path - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/set_port_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/set_port_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/set_port_spec.rb +URI::Generic#set_port - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/set_query_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/set_query_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/set_query_spec.rb +URI::Generic#set_query - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/set_registry_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/set_registry_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/set_registry_spec.rb +URI::Generic#set_registry - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/set_scheme_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/set_scheme_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/set_scheme_spec.rb +URI::Generic#set_scheme - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/set_user_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/set_user_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/set_user_spec.rb +URI::Generic#set_user - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/set_userinfo_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/set_userinfo_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/set_userinfo_spec.rb +URI::Generic#set_userinfo - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/to_s_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/to_s_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/to_s_spec.rb +URI::Generic#to_s - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/use_registry_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/use_registry_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/use_registry_spec.rb +URI::Generic.use_registry - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/user_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/user_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/user_spec.rb +URI::Generic#user - needs to be reviewed for spec completeness +URI::Generic#user= - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/generic/userinfo_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/generic/userinfo_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/generic/userinfo_spec.rb +URI::Generic#userinfo - needs to be reviewed for spec completeness +URI::Generic#userinfo= - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/http/build_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/http/build_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/http/build_spec.rb +URI::HTTP.build - needs to be reviewed for spec completeness @@ 86728 @@ - returns a string of the path + query - returns '/' if the path of the URI is blank +URI::HTTP#request_uri - needs to be reviewed for spec completeness @@ 86751 @@ Finished in <t> seconds 1 file, 5 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/ldap/attributes_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/ldap/attributes_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/ldap/attributes_spec.rb +URI::LDAP#attributes - needs to be reviewed for spec completeness +URI::LDAP#attributes= - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/ldap/build_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/ldap/build_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/ldap/build_spec.rb +URI::LDAP.build - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/ldap/dn_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/ldap/dn_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/ldap/dn_spec.rb +URI::LDAP#dn - needs to be reviewed for spec completeness +URI::LDAP#dn= - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/ldap/extensions_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/ldap/extensions_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/ldap/extensions_spec.rb +URI::LDAP#extensions - needs to be reviewed for spec completeness +URI::LDAP#extensions= - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/ldap/filter_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/ldap/filter_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/ldap/filter_spec.rb +URI::LDAP#filter - needs to be reviewed for spec completeness +URI::LDAP#filter= - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/ldap/hierarchical_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/ldap/hierarchical_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/ldap/hierarchical_spec.rb +URI::LDAP#hierarchical? - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/ldap/scope_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/ldap/scope_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/ldap/scope_spec.rb +URI::LDAP#scope - needs to be reviewed for spec completeness +URI::LDAP#scope= - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/ldap/set_attributes_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/ldap/set_attributes_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/ldap/set_attributes_spec.rb +URI::LDAP#set_attributes - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/ldap/set_dn_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/ldap/set_dn_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/ldap/set_dn_spec.rb +URI::LDAP#set_dn - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/ldap/set_extensions_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/ldap/set_extensions_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/ldap/set_extensions_spec.rb +URI::LDAP#set_extensions - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/ldap/set_filter_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/ldap/set_filter_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/ldap/set_filter_spec.rb +URI::LDAP#set_filter - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/ldap/set_scope_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/ldap/set_scope_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/ldap/set_scope_spec.rb +URI::LDAP#set_scope - needs to be reviewed for spec completeness @@ 86918 @@ URI::Mailto.build - conforms to the MatzRuby tests +URI::MailTo.build - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 1 example, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/mailto/headers_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/mailto/headers_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/mailto/headers_spec.rb +URI::MailTo#headers - needs to be reviewed for spec completeness +URI::MailTo#headers= - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/mailto/set_headers_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/mailto/set_headers_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/mailto/set_headers_spec.rb +URI::MailTo#set_headers - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/mailto/set_to_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/mailto/set_to_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/mailto/set_to_spec.rb +URI::MailTo#set_to - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/mailto/to_mailtext_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/mailto/to_mailtext_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/mailto/to_mailtext_spec.rb +URI::MailTo#to_mailtext - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/mailto/to_rfc822text_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/mailto/to_rfc822text_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/mailto/to_rfc822text_spec.rb +URI::MailTo#to_rfc822text - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/mailto/to_s_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/mailto/to_s_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/mailto/to_s_spec.rb +URI::MailTo#to_s - needs to be reviewed for spec completeness Finished in <t> seconds 1 file, 0 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/mailto/to_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/mailto/to_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/mailto/to_spec.rb +URI::MailTo#to - needs to be reviewed for spec completeness +URI::MailTo#to= - needs to be reviewed for spec completeness @@ 87144 @@ Finished in <t> seconds 1 file, 1 example, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/split_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/split_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/split_spec.rb +URI.split - needs to be reviewed for spec completeness @@ 87170 @@ Finished in <t> seconds 1 file, 3 examples, <num> expectations, 0 failures, 0 errors +== rubyspec/library/uri/util/make_components_hash_spec.rb # <time> ++ bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/library/uri/util/make_components_hash_spec.rb ruby <version> +/home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/uri/util/make_components_hash_spec.rb +URI::Util.make_components_hash - needs to be reviewed for spec completeness @@ 89321 @@ - rb_cThread references the Thread class - rb_cTrueClass references the TrueClass class - rb_cProc references the Proc class +- rb_cMethod references the Method class C-API exception constant - rb_eArgError references the ArgumentError class @@ 89401 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/optional/capi/float_spec.rb CApiFloatSpecs rb_float_new +- creates a new float CApiFloatSpecs RFLOAT - returns a struct with the Float value - allows changing the Float value CApiFloatSpecs rb_Float +- creates a new Float from a String Finished in <t> seconds @@ 89433 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/optional/capi/globals_spec.rb CApiGlobalSpecs - correctly gets global values +- returns $~ - correctly sets global values - lists all global variables - rb_define_variable should define a new global variable @@ 89740 @@ - calls #to_int to coerce the value CApiNumericSpecs rb_Integer +- creates a new Integer from a String CApiNumericSpecs rb_ll2inum +- creates a new Fixnum from a small signed long long CApiNumericSpecs rb_int2inum +- creates a new Fixnum from a long CApiNumericSpecs rb_num2dbl - raises an TypeError if passed nil =================================================================== --- 20110414T232755Z @@ 10117 @@ - returns self for arrays - converts using :to_ary - returns nil when there is no :to_ary -- should not rescue errors - checks the result of the conversion /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/array/union_spec.rb @@ 11775 @@ - returns the errno given as optional argument to new SystemCallError#message -- should return default message when no message given - returns the message given as an argument to new /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/exception/to_s_spec.rb @@ 12187 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/lstat_spec.rb File.lstat - returns a File::Stat object if the given file exists -- should be able to use the instance methods - raises an Errno::ENOENT if the file does not exist File.lstat @@ 12342 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/reopen_spec.rb /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/setgid_spec.rb File.setgid? -- should return false if the file was just made -- should be false if the file doesn't exist -- should return true when the gid bit is set /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/setuid_spec.rb File.setuid? -- should return false if the file was just made -- should be false if the file doesn't exist -- should return true when the gid bit is set /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/size_spec.rb File.size? @@ 12402 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/atime_spec.rb File::Stat#atime -- should be able to determine the atime on a File::Stat object /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/blksize_spec.rb File::Stat#blksize -- should be able to determine the blksize on a File::Stat object /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/blockdev_spec.rb File::Stat#blockdev? @@ 12414 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/blocks_spec.rb File::Stat#blocks -- should be able to determine the blocks on a File::Stat object /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/chardev_spec.rb File::Stat#chardev? @@ 12424 @@ File::Stat#<=> - is able to compare files by the same modification times - is able to compare files by different modification times -- should also include Comparable and thus == shows mtime equality between two File::Stat objects /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/ctime_spec.rb File::Stat#ctime -- should be able to determine the ctime on a File::Stat object /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/dev_major_spec.rb File::Stat#dev_major @@ 12482 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/gid_spec.rb File::Stat#gid -- should be able to determine the group owner through a File::Stat object /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/grpowned_spec.rb File::Stat#grpowned? @@ 12490 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/ino_spec.rb File::Stat#ino -- should be able to determine the ino on a File::Stat object /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/inspect_spec.rb File::Stat#inspect @@ 12498 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/mode_spec.rb File::Stat#mode -- should be able to determine the mode through a File::Stat object /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/mtime_spec.rb File::Stat#mtime -- should be able to determine the mtime on a File::Stat object /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/new_spec.rb File::Stat#initialize @@ 12583 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/uid_spec.rb File::Stat#uid -- should be able to determine the owner through a File::Stat object /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/world_readable_spec.rb /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/world_writable_spec.rb @@ 12610 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat_spec.rb File.stat - returns a File::Stat object if the given file exists -- should be able to use the instance methods - raises an Errno::ENOENT if the file does not exist File.stat @@ 12880 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/fixnum/bit_and_spec.rb Fixnum#& - returns self bitwise AND other -- should be able to AND a bignum with a fixnum - doesn't raise an error if passed a Float out of Fixnum range - converts a Float to an Integer - tries to convert it's int like argument to an Integer using to_int @@ 12890 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/fixnum/bit_or_spec.rb Fixnum#| - returns self bitwise OR other -- should be able to AND a bignum with a fixnum - doesn't raise an error if passed a Float out of Fixnum range - converts a Float to an Integer - tries to convert the int like argument to an Integer using to_int @@ 12900 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/fixnum/bit_xor_spec.rb Fixnum#^ - returns self bitwise EXCLUSIVE OR other -- should be able to AND a bignum with a fixnum - doesn't raise an error if passed a Float out of Fixnum range - converts a Float to an Integer - tries to convert the given argument to an Integer using to_int @@ 13600 @@ Hash#initialize - is private - can be used to reset default_proc -- should get passed whatever args were passed to Hash#new - returns self - raises a TypeError if called on a frozen instance @@ 14049 @@ - returns true after reading with sysread - returns true after reading with readlines - returns false on just opened non-empty stream -- should not consume the data from the stream - raises IOError on closed stream - raises IOError on stream closed for reading by close_read - returns true on one-byte stream after single-byte read @@ 15132 @@ - encapsulates the execution context properly - raises a NameError on undefined variable -Kernel.binding - needs to be reviewed for spec completeness -- uses Kernel for 'self' in the binding /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/kernel/block_given_spec.rb Kernel#block_given? @@ 15324 @@ - allows creating a new class in a binding - allows creating a new class in a binding created by #eval - includes file and line information in syntax error -- should perform top level evaluations from inside a block - uses the filename of the binding if none is provided -- should not alter the value of __FILE__ in the binding - uses the receiver as self inside the eval - does not pass the block to the method being eval'ed @@ 18842 @@ Regexp.compile given a String - uses the String argument as an unescaped literal to construct a Regexp object -- should throw regexp error with incorrect regexp - does not set Regexp options if only given one argument - does not set Regexp options if second argument is nil or false - sets options from second argument if it is one of the Fixnum option constants @@ 18936 @@ Regexp.new given a String - uses the String argument as an unescaped literal to construct a Regexp object -- should throw regexp error with incorrect regexp - does not set Regexp options if only given one argument - does not set Regexp options if second argument is nil or false - sets options from second argument if it is one of the Fixnum option constants @@ 21552 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/thread/backtrace_spec.rb /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/thread/critical_spec.rb Thread.critical= -- should be sticky - allows all non-bool arguments - functions as a critical section - does not change status of other existing threads @@ 21884 @@ - handles string-like second argument - handles string arguments - handles float arguments -- should accept various year ranges - raises an ArgumentError for out of range values - raises ArgumentError for invalid number of arguments - accepts a String or Integer only for arguments @@ 21948 @@ - handles string-like second argument - handles string arguments - handles float arguments -- should accept various year ranges - raises an ArgumentError for out of range values - raises ArgumentError for invalid number of arguments - accepts a String or Integer only for arguments @@ 21984 @@ - handles string-like second argument - handles string arguments - handles float arguments -- should accept various year ranges - raises an ArgumentError for out of range values - raises ArgumentError for invalid number of arguments - accepts a String or Integer only for arguments @@ 22116 @@ - handles string-like second argument - handles string arguments - handles float arguments -- should accept various year ranges - raises an ArgumentError for out of range values - raises ArgumentError for invalid number of arguments - accepts a String or Integer only for arguments @@ 22545 @@ - replaces the original method Defining an 'initialize' method -- should make it private Defining an 'initialize_copy' method -- should make it private An instance method definition with a splat - accepts an unnamed '*' argument @@ 25010 @@ - includes the return value of the passed block when passed a block CGI::HtmlExtension#textarea when passed Hash -- should use the passed Hash as attributes - includes the return value of the passed block when passed a block /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/cgi/initialize_spec.rb @@ 25370 @@ - returns the arccosine for Complex numbers - returns the arccosine for numbers greater than 1.0 as a Complex number - returns the arccosine for numbers less than -1.0 as a Complex number -- should be private Math#acos! - returns the arccosine of the argument - raises a TypeError when passed a Complex number - raises an Errno::EDOM for numbers greater than 1.0 - raises an Errno::EDOM for numbers less than -1.0 -- should be private Math.acos - returns the arccosine of the passed argument @@ 25396 @@ - returns the principle value of the inverse hyperbolic cosine of the argument - returns the principle value of the inverse hyperbolic cosine for numbers less than 1.0 as a Complex number - returns the principle value of the inverse hyperbolic cosine for Complex numbers -- should be private Math#acosh! - returns the principle value of the inverse hyperbolic cosine of the argument - raises Errno::EDOM for numbers less than 1.0 - raises a TypeError when passed a Complex number -- should be private Math.acosh - returns the principle value of the inverse hyperbolic cosine of the argument @@ 25420 @@ - returns the arcsine for Complex numbers - returns a Complex number when the argument is greater than 1.0 - returns a Complex number when the argument is less than -1.0 -- should be private Math#asin! - returns the arcsine of the argument - raises an Errno::EDOM if the argument is greater than 1.0 - raises an Errno::EDOM if the argument is less than -1.0 - raises a TypeError when passed a Complex number -- should be private Math.asin - returns the arcsine of the argument @@ 25445 @@ Math#asinh - returns the inverse hyperbolic sin of the argument - returns the inverse hyperbolic sin for Complex numbers -- should be private Math#asinh! - returns the inverse hyperbolic sin of the argument - raises a TypeError when passed a Complex number -- should be private Math.asinh - returns the inverse hyperbolic sin of the argument @@ 25465 @@ - returns the arc tangent of the passed arguments - returns the arc tangent for two Complex numbers - returns the arc tangent for Complex and real numbers -- should be private Math#atan2! - returns the arc tangent of the passed arguments - raises a TypeError when passed a Complex number -- should be private Math.atan2 - returns the arc tangent of the passed arguments @@ 25485 @@ Math#atan - returns the arctangent of the argument - returns the arctangent for Complex numbers -- should be private Math#atan! - returns the arctangent of the argument - raises a TypeError when passed a Complex number -- should be private Math.atan - returns the arctangent of the argument @@ 25535 @@ Math#cos - returns the cosine of the argument expressed in radians - returns the cosine for Complex numbers -- should be private Math#cos! - returns the cosine of the argument expressed in radians - raises a TypeError when passed a Complex number -- should be private Math.cos - returns the cosine of the argument expressed in radians @@ 25554 @@ Math#cosh - returns the hyperbolic cosine of the passed argument - returns the hyperbolic cosine for Complex numbers -- should be private Math#cosh! - returns the hyperbolic cosine of the passed argument - raises a TypeError when passed a Complex number -- should be private Math.cosh - returns the hyperbolic cosine of the passed argument @@ 25573 @@ Math#exp - returns the base-e exponential of the passed argument - returns the base-e exponential for Complex numbers -- should be private Math#exp! - returns the base-e exponential of the passed argument - raises a TypeError when passed a Complex number -- should be private Math.exp - returns the base-e exponential of the passed argument @@ 25592 @@ Math#log10 - returns the base-10 logarithm of the passed argument - returns the base-10 logarithm for Complex numbers -- should be private Math#log10! - returns the base-10 logarithm of the argument - raises an Errno::EDOM when the passed argument is negative - raises a TypeError when passed a Complex number -- should be private Math.log10 - returns the base-10 logarithm of the passed argument @@ 25614 @@ - returns the natural logarithm of the passed argument - returns the natural logarithm for Complex numbers - returns the natural logarithm for negative numbers as a Complex number -- should be private Math#log! - returns the natural logarithm of the argument - raises an Errno::EDOM if the argument is less than 0 - raises a TypeError when passed a Complex number -- should be private Math.log - returns the natural logarithm of the passed argument @@ 25636 @@ Math#sin - returns the sine of the passed argument expressed in radians - returns the sine for Complex numbers -- should be private Math#sin! - returns the sine of the passed argument expressed in radians - raises a TypeError when passed a Complex number -- should be private Math.sin - returns the sine of the passed argument expressed in radians @@ 25655 @@ Math#sinh - returns the hyperbolic sin of the argument - returns the hyperbolic sin for Complex numbers -- should be private Math#sinh! - returns the hyperbolic sin of the argument - raises a TypeError when passed a Complex number -- should be private Math.sinh - returns the hyperbolic sin of the argument @@ 25675 @@ - returns the square root for positive numbers - returns the square root for negative numbers - returns the square root for Complex numbers -- should be private Math#sqrt! - returns the square root for positive numbers - raises Errno::EDOM when the passed argument is negative - raises a TypeError when passed a Complex number -- should be private Math.sqrt - returns the square root for positive numbers @@ 25697 @@ Math#tan - returns the tangent of the argument - returns the tangent for Complex numbers -- should be private Math#tan! - returns the tangent of the argument - raises a TypeError when passed a Complex number -- should be private Math.tan - returns the tangent of the argument @@ 25716 @@ Math#tanh - returns the hyperbolic tangent of the argument - returns the hyperbolic tangent for Complex numbers -- should be private Math#tanh! - returns the hyperbolic tangent of the argument - raises a TypeError when passed a Complex number -- should be private Math.tanh - returns the hyperbolic tangent of the argument @@ 25860 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/conditionvariable/broadcast_spec.rb ConditionVariable#broadcast -- should return self if nothing to broadcast to -- should return self if something is waiting for a broadcast - releases all threads waiting in line for this resource /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/conditionvariable/signal_spec.rb ConditionVariable#signal -- should return self if nothing to signal -- should return self if something is waiting for a signal - releases the first thread waiting in line for this resource /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/conditionvariable/wait_spec.rb ConditionVariable#wait -- should return self /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/continuation/call_spec.rb /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/continuation/element_reference_spec.rb @@ 26154 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/add_month_spec.rb Date#>> -- should add a number of months to a Date - should result in the last day of a month if the day doesn't exist - should raise an error on non numeric parameters /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/add_spec.rb Date#+ -- should add a number of days to a Date -- should add a negative number of days to a Date - should raise an error on non numeric parameters /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/boat_spec.rb @@ 26195 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/constants_spec.rb Date constants -- should define ITALY -- should define ENGLAND -- should define JULIAN -- should define GREGORIAN -- should define MONTHNAMES -- should define DAYNAMES -- should define ABBR_MONTHNAMES /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/conversions_spec.rb Date#new_start -- should convert a date object into another with a new calendar reform Date#italy -- should convert a date object into another with the Italian calendar reform Date#england -- should convert a date object into another with the English calendar reform Date#julian -- should convert a date object into another with the Julian calendar Date#gregorian -- should convert a date object into another with the Gregorian calendar Date#ordinal_to_jd -- should convert an ordinal date (year-day) to a Julian day number Date#jd_to_ordinal -- should convert a Julian day number into an ordinal date Date#civil_to_jd -- should convert a civil date into a Julian day number Date#jd_to_civil -- should convert a Julian day into a civil date Date#commercial_to_jd -- should convert a commercial date (year - week - day of week) into a Julian day number Date#jd_to_commercial -- should convert a Julian day number into a commercial date Date#ajd_to_jd -- should convert a Astronomical Julian day number into a Julian day number Date#jd_to_ajd -- should convert a Julian day number into a Astronomical Julian day number Date#day_fraction_to_time -- should be able to convert a day fraction into time Date#time_to_day_fraction -- should be able to convert a time into a day fraction Date#amjd_to_ajd -- shoud be able to convert Astronomical Modified Julian day numbers into Astronomical Julian day numbers Date#ajd_to_amjd -- shoud be able to convert Astronomical Julian day numbers into Astronomical Modified Julian day numbers Date#mjd_to_jd -- shoud be able to convert Modified Julian day numbers into Julian day numbers Date#jd_to_mjd -- shoud be able to convert Julian day numbers into Modified Julian day numbers Date#ld_to_jd -- should be able to convert the number of days since the Gregorian calendar in Italy into Julian day numbers Date#jd_to_ld -- should be able to convert Julian day numbers into the number of days since the Gregorian calendar in Italy Date#jd_to_wday -- should be able to convert a Julian day number into a week day number /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/downto_spec.rb Date#downto @@ 26276 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/eql_spec.rb Date#eql? -- should be able determine equality between date objects /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/gregorian_spec.rb Date#gregorian? @@ 26284 @@ - should mark a day after the calendar reform as Julian Date#gregorian_leap? -- should be able to determine whether a year is a leap year in the Gregorian calendar /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/hash_spec.rb Date#hash -- should be able determine the hash value for a date -- should be the case that the same date results in the same hash /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/infinity_spec.rb Date::Infinity @@ 27120 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/drb/remove_server_spec.rb /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/drb/start_service_spec.rb DRb.start_service -- should run a basic remote call -- should run a basic remote call passing a block /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/drb/stop_service_spec.rb DRb.stop_service -- should correctly clear the port so a new server can start /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/drb/thread_spec.rb /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/drb/to_id_spec.rb @@ 27785 @@ - returns the square root for Rational numbers - returns the square root for positive numbers - raises an Errno::EDOM if the argument is a negative number -- should be private Math.rsqrt - returns the square root for Rational numbers @@ 27798 @@ - returns the square root for Complex numbers - returns the square root for positive numbers - returns the square root for negative numbers -- should be private Math.rsqrt - returns the square root for Rational numbers @@ 32575 @@ - returns self for arrays - converts using :to_ary - returns nil when there is no :to_ary -- should not rescue errors - checks the result of the conversion @@ 37066 @@ - returns the errno given as optional argument to new SystemCallError#message -- should return default message when no message given - returns the message given as an argument to new @@ 37814 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/lstat_spec.rb File.lstat - returns a File::Stat object if the given file exists -- should be able to use the instance methods - raises an Errno::ENOENT if the file does not exist File.lstat @@ 38089 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/setgid_spec.rb File.setgid? -- should return false if the file was just made -- should be false if the file doesn't exist -- should return true when the gid bit is set Finished in <t> seconds @@ 38103 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/setuid_spec.rb File.setuid? -- should return false if the file was just made -- should be false if the file doesn't exist -- should return true when the gid bit is set Finished in <t> seconds @@ 38189 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/atime_spec.rb File::Stat#atime -- should be able to determine the atime on a File::Stat object Finished in <t> seconds @@ 38201 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/blksize_spec.rb File::Stat#blksize -- should be able to determine the blksize on a File::Stat object Finished in <t> seconds @@ 38225 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/blocks_spec.rb File::Stat#blocks -- should be able to determine the blocks on a File::Stat object Finished in <t> seconds @@ 38251 @@ File::Stat#<=> - is able to compare files by the same modification times - is able to compare files by different modification times -- should also include Comparable and thus == shows mtime equality between two File::Stat objects Finished in <t> seconds @@ 38263 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/ctime_spec.rb File::Stat#ctime -- should be able to determine the ctime on a File::Stat object Finished in <t> seconds @@ 38389 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/gid_spec.rb File::Stat#gid -- should be able to determine the group owner through a File::Stat object Finished in <t> seconds @@ 38413 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/ino_spec.rb File::Stat#ino -- should be able to determine the ino on a File::Stat object Finished in <t> seconds @@ 38437 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/mode_spec.rb File::Stat#mode -- should be able to determine the mode through a File::Stat object Finished in <t> seconds @@ 38449 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/mtime_spec.rb File::Stat#mtime -- should be able to determine the mtime on a File::Stat object Finished in <t> seconds @@ 38658 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat/uid_spec.rb File::Stat#uid -- should be able to determine the owner through a File::Stat object Finished in <t> seconds @@ 38733 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/file/stat_spec.rb File.stat - returns a File::Stat object if the given file exists -- should be able to use the instance methods - raises an Errno::ENOENT if the file does not exist File.stat @@ 39315 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/fixnum/bit_and_spec.rb Fixnum#& - returns self bitwise AND other -- should be able to AND a bignum with a fixnum - doesn't raise an error if passed a Float out of Fixnum range - converts a Float to an Integer - tries to convert it's int like argument to an Integer using to_int @@ 39333 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/fixnum/bit_or_spec.rb Fixnum#| - returns self bitwise OR other -- should be able to AND a bignum with a fixnum - doesn't raise an error if passed a Float out of Fixnum range - converts a Float to an Integer - tries to convert the int like argument to an Integer using to_int @@ 39351 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/fixnum/bit_xor_spec.rb Fixnum#^ - returns self bitwise EXCLUSIVE OR other -- should be able to AND a bignum with a fixnum - doesn't raise an error if passed a Float out of Fixnum range - converts a Float to an Integer - tries to convert the given argument to an Integer using to_int @@ 41265 @@ Hash#initialize - is private - can be used to reset default_proc -- should get passed whatever args were passed to Hash#new - returns self - raises a TypeError if called on a frozen instance @@ 42274 @@ - returns true after reading with sysread - returns true after reading with readlines - returns false on just opened non-empty stream -- should not consume the data from the stream - raises IOError on closed stream - raises IOError on stream closed for reading by close_read - returns true on one-byte stream after single-byte read @@ 44040 @@ - encapsulates the execution context properly - raises a NameError on undefined variable -Kernel.binding - needs to be reviewed for spec completeness -- uses Kernel for 'self' in the binding Finished in <t> seconds @@ 44454 @@ - allows creating a new class in a binding - allows creating a new class in a binding created by #eval - includes file and line information in syntax error -- should perform top level evaluations from inside a block - uses the filename of the binding if none is provided -- should not alter the value of __FILE__ in the binding - uses the receiver as self inside the eval - does not pass the block to the method being eval'ed @@ 52197 @@ Regexp.compile given a String - uses the String argument as an unescaped literal to construct a Regexp object -- should throw regexp error with incorrect regexp - does not set Regexp options if only given one argument - does not set Regexp options if second argument is nil or false - sets options from second argument if it is one of the Fixnum option constants @@ 52411 @@ Regexp.new given a String - uses the String argument as an unescaped literal to construct a Regexp object -- should throw regexp error with incorrect regexp - does not set Regexp options if only given one argument - does not set Regexp options if second argument is nil or false - sets options from second argument if it is one of the Fixnum option constants @@ 57025 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/core/thread/critical_spec.rb Thread.critical= -- should be sticky - allows all non-bool arguments - functions as a critical section - does not change status of other existing threads @@ 57801 @@ - handles string-like second argument - handles string arguments - handles float arguments -- should accept various year ranges - raises an ArgumentError for out of range values - raises ArgumentError for invalid number of arguments - accepts a String or Integer only for arguments @@ 57953 @@ - handles string-like second argument - handles string arguments - handles float arguments -- should accept various year ranges - raises an ArgumentError for out of range values - raises ArgumentError for invalid number of arguments - accepts a String or Integer only for arguments @@ 58029 @@ - handles string-like second argument - handles string arguments - handles float arguments -- should accept various year ranges - raises an ArgumentError for out of range values - raises ArgumentError for invalid number of arguments - accepts a String or Integer only for arguments @@ 58377 @@ - handles string-like second argument - handles string arguments - handles float arguments -- should accept various year ranges - raises an ArgumentError for out of range values - raises ArgumentError for invalid number of arguments - accepts a String or Integer only for arguments @@ 59078 @@ - replaces the original method Defining an 'initialize' method -- should make it private Defining an 'initialize_copy' method -- should make it private An instance method definition with a splat - accepts an unnamed '*' argument @@ 63742 @@ - includes the return value of the passed block when passed a block CGI::HtmlExtension#textarea when passed Hash -- should use the passed Hash as attributes - includes the return value of the passed block when passed a block @@ 64762 @@ - returns the arccosine for Complex numbers - returns the arccosine for numbers greater than 1.0 as a Complex number - returns the arccosine for numbers less than -1.0 as a Complex number -- should be private Math#acos! - returns the arccosine of the argument - raises a TypeError when passed a Complex number - raises an Errno::EDOM for numbers greater than 1.0 - raises an Errno::EDOM for numbers less than -1.0 -- should be private Math.acos - returns the arccosine of the passed argument @@ 64796 @@ - returns the principle value of the inverse hyperbolic cosine of the argument - returns the principle value of the inverse hyperbolic cosine for numbers less than 1.0 as a Complex number - returns the principle value of the inverse hyperbolic cosine for Complex numbers -- should be private Math#acosh! - returns the principle value of the inverse hyperbolic cosine of the argument - raises Errno::EDOM for numbers less than 1.0 - raises a TypeError when passed a Complex number -- should be private Math.acosh - returns the principle value of the inverse hyperbolic cosine of the argument @@ 64828 @@ - returns the arcsine for Complex numbers - returns a Complex number when the argument is greater than 1.0 - returns a Complex number when the argument is less than -1.0 -- should be private Math#asin! - returns the arcsine of the argument - raises an Errno::EDOM if the argument is greater than 1.0 - raises an Errno::EDOM if the argument is less than -1.0 - raises a TypeError when passed a Complex number -- should be private Math.asin - returns the arcsine of the argument @@ 64861 @@ Math#asinh - returns the inverse hyperbolic sin of the argument - returns the inverse hyperbolic sin for Complex numbers -- should be private Math#asinh! - returns the inverse hyperbolic sin of the argument - raises a TypeError when passed a Complex number -- should be private Math.asinh - returns the inverse hyperbolic sin of the argument @@ 64889 @@ - returns the arc tangent of the passed arguments - returns the arc tangent for two Complex numbers - returns the arc tangent for Complex and real numbers -- should be private Math#atan2! - returns the arc tangent of the passed arguments - raises a TypeError when passed a Complex number -- should be private Math.atan2 - returns the arc tangent of the passed arguments @@ 64917 @@ Math#atan - returns the arctangent of the argument - returns the arctangent for Complex numbers -- should be private Math#atan! - returns the arctangent of the argument - raises a TypeError when passed a Complex number -- should be private Math.atan - returns the arctangent of the argument @@ 64983 @@ Math#cos - returns the cosine of the argument expressed in radians - returns the cosine for Complex numbers -- should be private Math#cos! - returns the cosine of the argument expressed in radians - raises a TypeError when passed a Complex number -- should be private Math.cos - returns the cosine of the argument expressed in radians @@ 65010 @@ Math#cosh - returns the hyperbolic cosine of the passed argument - returns the hyperbolic cosine for Complex numbers -- should be private Math#cosh! - returns the hyperbolic cosine of the passed argument - raises a TypeError when passed a Complex number -- should be private Math.cosh - returns the hyperbolic cosine of the passed argument @@ 65037 @@ Math#exp - returns the base-e exponential of the passed argument - returns the base-e exponential for Complex numbers -- should be private Math#exp! - returns the base-e exponential of the passed argument - raises a TypeError when passed a Complex number -- should be private Math.exp - returns the base-e exponential of the passed argument @@ 65064 @@ Math#log10 - returns the base-10 logarithm of the passed argument - returns the base-10 logarithm for Complex numbers -- should be private Math#log10! - returns the base-10 logarithm of the argument - raises an Errno::EDOM when the passed argument is negative - raises a TypeError when passed a Complex number -- should be private Math.log10 - returns the base-10 logarithm of the passed argument @@ 65094 @@ - returns the natural logarithm of the passed argument - returns the natural logarithm for Complex numbers - returns the natural logarithm for negative numbers as a Complex number -- should be private Math#log! - returns the natural logarithm of the argument - raises an Errno::EDOM if the argument is less than 0 - raises a TypeError when passed a Complex number -- should be private Math.log - returns the natural logarithm of the passed argument @@ 65124 @@ Math#sin - returns the sine of the passed argument expressed in radians - returns the sine for Complex numbers -- should be private Math#sin! - returns the sine of the passed argument expressed in radians - raises a TypeError when passed a Complex number -- should be private Math.sin - returns the sine of the passed argument expressed in radians @@ 65151 @@ Math#sinh - returns the hyperbolic sin of the argument - returns the hyperbolic sin for Complex numbers -- should be private Math#sinh! - returns the hyperbolic sin of the argument - raises a TypeError when passed a Complex number -- should be private Math.sinh - returns the hyperbolic sin of the argument @@ 65179 @@ - returns the square root for positive numbers - returns the square root for negative numbers - returns the square root for Complex numbers -- should be private Math#sqrt! - returns the square root for positive numbers - raises Errno::EDOM when the passed argument is negative - raises a TypeError when passed a Complex number -- should be private Math.sqrt - returns the square root for positive numbers @@ 65209 @@ Math#tan - returns the tangent of the argument - returns the tangent for Complex numbers -- should be private Math#tan! - returns the tangent of the argument - raises a TypeError when passed a Complex number -- should be private Math.tan - returns the tangent of the argument @@ 65236 @@ Math#tanh - returns the hyperbolic tangent of the argument - returns the hyperbolic tangent for Complex numbers -- should be private Math#tanh! - returns the hyperbolic tangent of the argument - raises a TypeError when passed a Complex number -- should be private Math.tanh - returns the hyperbolic tangent of the argument @@ 65532 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/conditionvariable/broadcast_spec.rb ConditionVariable#broadcast -- should return self if nothing to broadcast to -- should return self if something is waiting for a broadcast - releases all threads waiting in line for this resource @@ 65546 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/conditionvariable/signal_spec.rb ConditionVariable#signal -- should return self if nothing to signal -- should return self if something is waiting for a signal - releases the first thread waiting in line for this resource @@ 65560 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/conditionvariable/wait_spec.rb ConditionVariable#wait -- should return self Finished in <t> seconds @@ 66290 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/add_month_spec.rb Date#>> -- should add a number of months to a Date - should result in the last day of a month if the day doesn't exist - should raise an error on non numeric parameters @@ 66304 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/add_spec.rb Date#+ -- should add a number of days to a Date -- should add a negative number of days to a Date - should raise an error on non numeric parameters @@ 66371 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/constants_spec.rb Date constants -- should define ITALY -- should define ENGLAND -- should define JULIAN -- should define GREGORIAN -- should define MONTHNAMES -- should define DAYNAMES -- should define ABBR_MONTHNAMES Finished in <t> seconds @@ 66389 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/conversions_spec.rb Date#new_start -- should convert a date object into another with a new calendar reform Date#italy -- should convert a date object into another with the Italian calendar reform Date#england -- should convert a date object into another with the English calendar reform Date#julian -- should convert a date object into another with the Julian calendar Date#gregorian -- should convert a date object into another with the Gregorian calendar Date#ordinal_to_jd -- should convert an ordinal date (year-day) to a Julian day number Date#jd_to_ordinal -- should convert a Julian day number into an ordinal date Date#civil_to_jd -- should convert a civil date into a Julian day number Date#jd_to_civil -- should convert a Julian day into a civil date Date#commercial_to_jd -- should convert a commercial date (year - week - day of week) into a Julian day number Date#jd_to_commercial -- should convert a Julian day number into a commercial date Date#ajd_to_jd -- should convert a Astronomical Julian day number into a Julian day number Date#jd_to_ajd -- should convert a Julian day number into a Astronomical Julian day number Date#day_fraction_to_time -- should be able to convert a day fraction into time Date#time_to_day_fraction -- should be able to convert a time into a day fraction Date#amjd_to_ajd -- shoud be able to convert Astronomical Modified Julian day numbers into Astronomical Julian day numbers Date#ajd_to_amjd -- shoud be able to convert Astronomical Julian day numbers into Astronomical Modified Julian day numbers Date#mjd_to_jd -- shoud be able to convert Modified Julian day numbers into Julian day numbers Date#jd_to_mjd -- shoud be able to convert Julian day numbers into Modified Julian day numbers Date#ld_to_jd -- should be able to convert the number of days since the Gregorian calendar in Italy into Julian day numbers Date#jd_to_ld -- should be able to convert Julian day numbers into the number of days since the Gregorian calendar in Italy Date#jd_to_wday -- should be able to convert a Julian day number into a week day number Finished in <t> seconds @@ 66476 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/eql_spec.rb Date#eql? -- should be able determine equality between date objects Finished in <t> seconds @@ 66492 @@ - should mark a day after the calendar reform as Julian Date#gregorian_leap? -- should be able to determine whether a year is a leap year in the Gregorian calendar Finished in <t> seconds @@ 66504 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/date/hash_spec.rb Date#hash -- should be able determine the hash value for a date -- should be the case that the same date results in the same hash Finished in <t> seconds @@ 68684 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/drb/start_service_spec.rb DRb.start_service -- should run a basic remote call -- should run a basic remote call passing a block Finished in <t> seconds @@ 68697 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/drb/stop_service_spec.rb DRb.stop_service -- should correctly clear the port so a new server can start Finished in <t> seconds @@ 70414 @@ - returns the square root for Rational numbers - returns the square root for positive numbers - raises an Errno::EDOM if the argument is a negative number -- should be private Math.rsqrt - returns the square root for Rational numbers @@ 70435 @@ - returns the square root for Complex numbers - returns the square root for positive numbers - returns the square root for negative numbers -- should be private Math.rsqrt - returns the square root for Rational numbers @@ 81514 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/library/socket/socket/getservbyname_spec.rb Socket#getservbyname -- identifies service ports - raises a SocketError when the service or port is invalid @@ 86894 @@ Finished in <t> seconds -1 file, 55 examples, <num> expectations, 0 failures, 0 errors == rubyspec/optional/capi/data_spec.rb # <time> + bin/ruby mspec/bin/mspec -V -f s -B /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/ruby.1.8.mspec -t /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/bin/ruby rubyspec/optional/capi/data_spec.rb ruby <version> @@ 86939 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/optional/capi/float_spec.rb CApiFloatSpecs rb_float_new -- should create a new float CApiFloatSpecs RFLOAT - returns a struct with the Float value - allows changing the Float value CApiFloatSpecs rb_Float -- should create a new Float from a String Finished in <t> seconds @@ 86971 @@ /home/chkbuild/tmp/build/ruby-1.8/<buildtime>/rubyspec/optional/capi/globals_spec.rb CApiGlobalSpecs - correctly gets global values -- should correctly retrieve $~ - correctly sets global values - lists all global variables - rb_define_variable should define a new global variable @@ 87278 @@ - calls #to_int to coerce the value CApiNumericSpecs rb_Integer -- should create a new Integer from a String CApiNumericSpecs rb_ll2inum -- should create a new Fixnum from a small signed long long CApiNumericSpecs rb_int2inum -- should create a new Fixnum from a long CApiNumericSpecs rb_num2dbl - raises an TypeError if passed nil
OlderDiff < 20110414T232755Z < ThisDiff > 20110415T232310Z > NewerDiff