public
Description: Executable specification for the Ruby programming language using RSpec syntax.
Homepage: http://rubyspec.org
Clone URL: git://github.com/rubyspec/rubyspec.git
name age message
file .gitignore Sat May 16 18:31:36 -0700 2009 Add "failed patching" wildcards to .gitignore. [headius]
file CHANGES.before-2008-05-10 Sat May 10 11:20:23 -0700 2008 Extracted the spec revision history from the Ru... [rue]
file LICENSE Sat May 17 00:12:15 -0700 2008 Update license info. [brixen]
file README.markdown Sun May 24 11:15:49 -0700 2009 Add a README to make it easier for people to ge... [Hongli Lai (Phusion)]
directory command_line/ Thu Feb 26 14:01:30 -0800 2009 First pass at command line specs for: -d -e -r ... [Jim Deville]
directory core/ Loading commit data...
directory fixtures/ Sun Jan 04 20:45:05 -0800 2009 Adding more expectations to class_variable_spec [febuiles]
directory language/ Fri May 22 12:05:27 -0700 2009 Some cleanup for return from a block specs. [brixen]
directory library/
directory nbproject/ Wed Feb 04 16:02:23 -0800 2009 Remove nbproject/private directory and add it t... [mernen]
file ruby.1.8.mspec Sun May 24 11:12:54 -0700 2009 Add some documenting comments for the MSpec con... [Hongli Lai (Phusion)]
file ruby.1.9.mspec Thu Jun 04 11:21:14 -0700 2009 Config: Filter /mspec\// from backtraces on 1.9. [runpaint]
directory shared/
file spec_helper.rb Mon Jun 08 15:34:41 -0700 2009 Update version to 0.7.6 and require mspec 1.5.12. [brixen]
directory tags/ Fri Jun 05 14:13:06 -0700 2009 Time.utc: Remove 1.9 tags; all tests pass [runpaint]
file version.rb Mon Jun 08 15:34:41 -0700 2009 Update version to 0.7.6 and require mspec 1.5.12. [brixen]
README.markdown

About RubySpec

RubySpec is a project to write a complete, executable specification for the Ruby programming language. The goal is official recognition and support from all the organizations currently involved in Ruby implementations, such as MatzRuby (including YARV), JRuby, IronRuby, MacRuby, Ruby.NET and MagLev. The specs describe Ruby language syntax, core library classes, and standard library classes.

This project has a free-flowing commit bit policy. If you have had a patch accepted by any current Ruby implementation project, you can get a commit bit by referencing your patch. Anyone who submits an accepted patch to this project will also receive a commit bit. The only requirement is that you have a Github account.

Running RubySpec

The RubySpec specification files are written in Ruby, utilizing the MSpec testing framework, so you need to download MSpec in order to run the RubySpec suite. If you don't have MSpec yet, then go to a directory outside the RubySpec directory and check out its source code from Github:

$ cd /somewhere
$ git clone git://github.com/rubyspec/mspec.git
# MSpec is now available in /somewhere/mspec.

You should add the MSpec bin directory to your PATH for easy access. In this README we'll assume that the mspec command is in PATH.

$ export PATH=/somewhere/mspec/bin:$PATH

If you already have MSpec, then you should run git pull from the MSpec source directory from time to time, because RubySpec often utilizes the latest MSpec features.

By invoking the mspec command inside the RubySpec directory, it will run the entire RubySpec suite against the Ruby interpreter (named ruby) in your PATH:

$ cd /path-to-rubyspec
$ mspec

Running RubySpec against a specific Ruby interpreter

Use the -t option to specify the Ruby interpreter that you want to run RubySpec against. The argument may be a full path to the Ruby binary:

# Runs RubySpec against /opt/ruby-enterprise/bin/ruby
$ mspec -t /opt/ruby-enterprise/bin/ruby

The argument may also be a shortcut. For example, if you specify j, then MSpec will look for jruby in PATH and run RubySpec against that:

# Runs RubySpec against JRuby in PATH.
$ mspec -t j

See mspec --help for a list of possible -t shortcut values.

Running parts of the spec

To run a single spec file, pass the filename to MSpec, for example:

$ mspec core/kernel/kind_of_spec.rb

You can also pass a directory, in which case all specs in that directories will be run:

$ mspec core/kernel

Note however that passing a directory to MSpec may not always be a good idea, because some specs aren't supposed to be run against the active Ruby interpreter. For example, if you run mspec -t /usr/bin/ruby1.8 library, then MSpec will run the 1.9-specific library specs as well, even though you specified Ruby 1.8 as the Ruby interpreter. Instead, you can specify pseudo-directories, which are defined in ruby.1.8.mspec and ruby.1.9.mspec. These pseudo-directories only include files appropriate for the active Ruby interpreter.

$ mspec :core
$ mspec :library
$ mspec :language

More

For more documentation, e.g. with regard to writing specs, please visit the Wiki.