dchelimsky / rspec
- Source
- Commits
- Network (141)
- Downloads (37)
- Wiki (27)
- Graphs
-
Tree:
cb7ff48
commit cb7ff4852331fafd1143d610ffefcdce2dd85c20
tree 2310741f37d545b5ba5d615df2ce42a13d7f8774
parent b171b70245e4eaa1505c8bcb792ab2460fe17ab1
tree 2310741f37d545b5ba5d615df2ce42a13d7f8774
parent b171b70245e4eaa1505c8bcb792ab2460fe17ab1
rspec /
| name | age | message | |
|---|---|---|---|
| |
.autotest | Thu Apr 03 15:02:31 -0700 2008 | |
| |
.gitignore | Wed Apr 16 21:40:16 -0700 2008 | |
| |
CHANGES | ||
| |
MIT-LICENSE | Wed Apr 16 16:20:10 -0700 2008 | |
| |
README | 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/ | ||
| |
rake_tasks/ | Thu Apr 03 15:02:31 -0700 2008 | |
| |
spec/ | ||
| |
stories/ | ||
| |
story_server/ | Thu Apr 03 15:02:31 -0700 2008 |
README
== 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


