public
Fork of dchelimsky/rspec
Description: Behaviour Driven Development framework for Ruby
Homepage: http://rspec.info
Clone URL: git://github.com/tsaleh/rspec.git
Search Repo:
rspec /
name age message
folder .autotest Thu Apr 03 15:02:31 -0700 2008 remove everything but rspec (core) from main rs... [dchelimsky]
folder .gitignore Sun Jul 06 05:10:03 -0700 2008 ignore coverage [dchelimsky]
folder History.txt Sat Jul 12 16:18:23 -0700 2008 words [dchelimsky]
folder Manifest.txt Sat Jul 05 22:19:20 -0700 2008 Remove translator from Manifest.txt [#458 statu... [dchelimsky]
folder README.txt Wed Jul 02 21:55:56 -0700 2008 update README [dchelimsky]
folder Rakefile Sun Jul 06 05:10:47 -0700 2008 add example and fix coverage problem with have_... [dchelimsky]
folder TODO Fri Apr 18 15:05:23 -0700 2008 Revert "just testing some stuff" [Brian Takita & Nathan Sobo]
folder bin/ Sat Jul 12 10:16:12 -0700 2008 eliminated (use Spec::Runner.options instead) [dchelimsky]
folder examples/ Thu May 29 17:20:46 -0700 2008 support multiline (specs and code from Ola Bini) [dchelimsky]
folder failing_examples/ Thu Apr 03 15:02:31 -0700 2008 remove everything but rspec (core) from main rs... [dchelimsky]
folder init.rb Thu Apr 03 15:02:31 -0700 2008 remove everything but rspec (core) from main rs... [dchelimsky]
folder lib/ Sat Jul 12 21:17:14 -0700 2008 change matchers to use #__send__ instead of #send [pat-maddox]
folder plugins/ Sat May 24 15:55:15 -0700 2008 Decouple mock framework from global extensions ... [dchelimsky]
folder rake_tasks/ Sun Jul 06 05:10:47 -0700 2008 add example and fix coverage problem with have_... [dchelimsky]
folder spec/ Sat Jul 12 21:17:14 -0700 2008 change matchers to use #__send__ instead of #send [pat-maddox]
folder stories/ Sat Jul 12 15:04:40 -0700 2008 Apply before_suite_parts *after* loading files!... [dchelimsky]
folder story_server/ Thu Apr 03 15:02:31 -0700 2008 remove everything but rspec (core) from main rs... [dchelimsky]
README.txt
= RSpec

* http://rspec.info
* http://rspec.info/rdoc/
* http://github.com/dchelimsky/rspec-rails/wikis
* mailto:rspec-devel@rubyforge.org

== DESCRIPTION:

RSpec is a Behaviour Driven Development framework with tools to express User
Stories with Executable Scenarios and Executable Examples at the code level.

== FEATURES:

* Spec::Story provides a framework for expressing User Stories and Scenarios
* Spec::Example provides a framework for expressing Isolated Examples
* Spec::Matchers provides Expression Matchers for use with Spec::Expectations and Spec::Mocks.

== SYNOPSIS:

Spec::Expectations supports setting expectations on your objects so you
can do things like:

  result.should equal(expected_result)
  
Spec::Mocks supports creating Mock Objects, Stubs, and adding Mock/Stub
behaviour to your existing objects.

== INSTALL:

  [sudo] gem install rspec

 or

  git clone git://github.com/dchelimsky/rspec.git
  cd rspec
  rake gem
  rake install_gem

== LICENSE:

(The MIT License)

Copyright (c) 2005-2008 The RSpec Development Team

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.