dchelimsky / rspec
- Source
- Commits
- Network (142)
- Downloads (37)
- Wiki (27)
- Graphs
-
Tree:
42e7e99
commit 42e7e99458841d6f113bdb53bae21f49cbb3d777
tree 97e3c9e06ad76ffff43fcd8bb635004473de4145
parent 2989ddf8e2f76f1f9794074e6a78cdb5fc9bf4b9
tree 97e3c9e06ad76ffff43fcd8bb635004473de4145
parent 2989ddf8e2f76f1f9794074e6a78cdb5fc9bf4b9
rspec /
| name | age | message | |
|---|---|---|---|
| |
.autotest | Thu Apr 03 15:02:31 -0700 2008 | |
| |
.gitignore | Wed Apr 16 21:40:16 -0700 2008 | |
| |
History.txt | ||
| |
MIT-LICENSE | Wed Apr 16 16:20:10 -0700 2008 | |
| |
Manifest.txt | ||
| |
README.txt | Mon Apr 07 22:01:38 -0700 2008 | |
| |
Rakefile | ||
| |
TODO | Fri Apr 18 15:05:23 -0700 2008 | |
| |
bin/ | ||
| |
examples/ | ||
| |
failing_examples/ | Thu Apr 03 15:02:31 -0700 2008 | |
| |
init.rb | Thu Apr 03 15:02:31 -0700 2008 | |
| |
lib/ | ||
| |
plugins/ | Sat May 24 15:55:15 -0700 2008 | |
| |
rake_tasks/ | Thu Apr 03 15:02:31 -0700 2008 | |
| |
spec/ | ||
| |
stories/ | ||
| |
story_server/ | Thu Apr 03 15:02:31 -0700 2008 |
README.txt
== RSpec RSpec is a Behaviour Driven Development framework with tools to express User Stories with Executable Scenarios and Executable Examples at the code level. RSpec ships with several modules: 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. 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. == Installation The simplest approach is to install the gem (as root in some environments): gem install -r rspec == Building the RSpec gem If you prefer to build the gem locally: git clone git://github.com/dchelimsky/rspec.git cd rspec rake gem gem install pkg/rspec-0.x.x.gem #as root


