README.txt

Path: README.txt
Last Update: Fri Oct 26 15:59:01 +0000 2018

RSpec

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:

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

[Validate]