public
Fork of evanphx/rubinius
Description: Rubinius, the Ruby VM
Homepage: http://rubini.us
Clone URL: git://github.com/ezmobius/rubinius.git
rubinius / mspec
name age message
..
file README Tue Apr 01 14:31:25 -0700 2008 Short overview of matchers in MSpec. [rue]
directory bin/ Mon Apr 07 20:35:30 -0700 2008 Make mspec help more explicit about target opti... [brixen]
file capture.rb Mon Dec 17 15:08:39 -0800 2007 Fixed require paths and a bit of restructuring. [brixen]
file complete.rb Thu Apr 03 21:35:31 -0700 2008 Remove non-functioning simple runner from MSpec... [brixen]
file expectations.rb Mon Dec 17 15:08:39 -0800 2007 Added OutputMatcher to mspec. [brixen]
directory expectations/ Thu Apr 03 21:35:31 -0700 2008 Added unconditionally failing flunk method to M... [brixen]
file matchers.rb Sun Mar 23 14:13:15 -0700 2008 Adds a be_empty matcher to MSpec [febuiles]
directory matchers/ Sun Mar 23 14:13:15 -0700 2008 MSpec specs for be_empty [febuiles]
file mocks.rb Mon Dec 17 15:13:12 -0800 2007 Beginning rewrite of mmock. [brixen]
directory mocks/ Mon Feb 18 16:47:19 -0800 2008 Removed all uses of spec_runner from mSpec. [brixen]
file runner.rb Mon Feb 18 16:47:20 -0800 2008 Combined split MSpec modules. Misc cleanup. [brixen]
directory runner/ Mon Apr 07 12:20:26 -0700 2008 Added beginning specs for MSpec scripts. [brixen]
file scratch.rb Sat Feb 23 00:07:06 -0800 2008 Preliminary changes to use instance_eval in MSpec. [brixen]
file simple.rb Mon Dec 17 15:08:39 -0800 2007 Fixed require paths and a bit of restructuring. [brixen]
directory spec/ Mon Apr 07 12:20:26 -0700 2008 More specs for MSpec scripts. [brixen]
file spec_helper.rb Thu Mar 13 10:33:29 -0700 2008 Fix MSpec spec breakage from removal of #pretty... [brixen]
file version.rb Mon Feb 18 16:47:21 -0800 2008 Misc fixes to get MSpec running specs. [brixen]
README
 mSpec and mMock
=================

mSpec and mMock are simplistic apes of RSpec.

The primary design rationale for mSpec is simplicity to allow nascent Ruby
implementations to run the Ruby specs. So, for example, there is not great
concern given to constant clashes. Namespacing (or module scoping) is not used
because implementing this correctly took a significant amount of work in
Rubinius and it is likely that other implementations would also face
difficulties.

mSpec is not intended as a replacement for RSpec. mSpec attempts to provide a
subset of RSpec syntax. It does not provide all the matchers, for instance.

mSpec also provides several extensions to facilitate writing the Ruby specs in
a manner compatible with multiple Ruby implementations. First, mSpec offers a
set of guards to control execution of the specs. These guards not only enable
or disable execution but also annotate the specs with additional information
about why they are run or not run. Second, mSpec provides a different shared
spec implementation specifically designed to ease writing specs for the
numerous aliased methods in Ruby. The mSpec shared spec implementation should
not conflict with RSpec's own shared behavior facility.

Caveats:
* Use RSpec to run the mSpec specs. There are no plans currently to make
  the mSpec specs runnable by mSpec.
* Don't mock the #hash method as mMock uses Hash internally. This can be
  replaced if necessary, but at this point it's not worth it.


 Overview of Features
======================


 Matchers
----------

Matchers are additional aids for the verification process. The default
is of course to #should or #should_not using the #== operator and its
friends but the matchers add a new set of 'operators' to help in the
task. They reside in `mspec/matchers/`. There are two broad categories,
those that apply to an individual object and those that apply to a
block:

  Object
 --------

- `base` implements the standard #==, #< #<= #>= #> and #=~ with their
  normal semantics for the objects that you invoke them on.

- `be_ancestor_of` is equivalent to checking `obj.ancestors.include?`.

- `be_close` is a "delta" for floating-point math. Due to the very
  nature of it, floating-point comparisons should never be treated as
  exact. By default the tolerance is 0.00003 but it can be altered if
  so desired. So `0.23154.should be_close(0.23157)` would succeed
  (which is usually close enough for floating point unless you are
  doing some scientific computing.)

- `be_empty` checks `obj.empty?`

- `be_kind_of` is equivalent to `obj.kind_of?`

- `include` is `obj.include?`


  Block
 -------

All of these should be applied to a block created with `lambda` or `proc`:

- `complain` is probably clearer stated as `lambda {...}.should complain`;
  it checks that the block issues a warning. The message can be checked
  against either a String or a Regexp.

- `output` checks that the block produces the given output (stdout as well
  as stderr, in that order) matched either to a String or a Regexp. This one
  uses overrides so if that is a problem (for e.g. speccing Readline or
  something) see below.

- `output_to_fd` is a lower-level version and actually verifies that output
  to a certain file descriptor is correct whether from an in-/output stream
  or an actual file. Also can check with either a String or a Regexp.

- `raise_error` verifies the exception type (if any) raised by the block it
  is associated with. The exception class can be given for finer-grained
  control (inheritance works normally so Exception would catch everything.)