CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 06 Aug 2025 07:36:19 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090922184302
location: https://web.archive.org/web/20090922184302/https://github.com/dchelimsky/rspec
server-timing: captures_list;dur=0.656262, exclusion.robots;dur=0.027059, exclusion.robots.policy;dur=0.011595, esindex;dur=0.014262, cdx.remote;dur=48.667284, LoadShardBlock;dur=458.444078, PetaboxLoader3.datanode;dur=207.163800, PetaboxLoader3.resolve;dur=185.723294
x-app-server: wwwb-app222
x-ts: 302
x-tr: 544
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app222; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Wed, 06 Aug 2025 07:36:20 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.35
x-archive-orig-date: Tue, 22 Sep 2009 18:43:02 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "fb1b4161badf931129dc9d73bf051036"
x-archive-orig-x-runtime: 855ms
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 39892
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Tue, 22 Sep 2009 18:43:02 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Tue, 15 Apr 2008 20:32:10 GMT", ; rel="prev memento"; datetime="Tue, 18 Aug 2009 01:27:32 GMT", ; rel="memento"; datetime="Tue, 22 Sep 2009 18:43:02 GMT", ; rel="next memento"; datetime="Thu, 01 Oct 2009 03:09:42 GMT", ; rel="last memento"; datetime="Sat, 26 Jul 2025 13:35:55 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_11_20090922080936_crawl100.gpg-c/51_11_20090922184246_crawl101.arc.gz
server-timing: captures_list;dur=0.747407, exclusion.robots;dur=0.026843, exclusion.robots.policy;dur=0.011461, esindex;dur=0.015931, cdx.remote;dur=30.085154, LoadShardBlock;dur=424.789298, PetaboxLoader3.datanode;dur=151.080269, PetaboxLoader3.resolve;dur=360.655364, load_resource;dur=320.347456
x-app-server: wwwb-app222
x-ts: 200
x-tr: 858
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
dchelimsky's rspec at master - GitHub
This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (

This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (

Description: | Behaviour Driven Development framework for Ruby edit |
Homepage: | https://rspec.info edit |
Public Clone URL: |
git://github.com/dchelimsky/rspec.git
Give this clone URL to anyone.
git clone git://github.com/dchelimsky/rspec.git
|
Your Clone URL: |
Use this clone URL yourself.
git clone git@github.com:dchelimsky/rspec.git
|
rspec /
README.rdoc
RSpec
- rspec.info
- rubyforge.org/projects/rspec
- github.com/dchelimsky/rspec/wikis
- rspec-users@rubyforge.org
- rspec-devel@rubyforge.org
DESCRIPTION:
RSpec is a Behaviour Driven Development framework for writing executable code examples.
FEATURES:
- Spec::Example provides a framework for organizing executable code examples
- Spec::Expectations adds #should and #should_not to every object
- Spec::Matchers provides Expression Matchers for use with #should and #should_not
- Spec::Mocks is a full featured mock object/stubbing library
SYNOPSIS:
describe Account do context "transfering money" do it "deposits transfer amount to the other account" do source = Account.new(50, :USD) target = mock('target account') target.should_receive(:deposit).with(Money.new(5, :USD)) source.transfer(5, :USD).to(target) end it "reduces its balance by the transfer amount" do source = Account.new(50, :USD) target = stub('target account') source.transfer(5, :USD).to(target) source.balance.should == Money.new(45, :USD) end end end $ spec spec/account_spec.rb --format nested Account transfering money deposits transfer amount to the other account reduces its balance by the transfer amount 2 examples, 0 failures
INSTALL:
[sudo] gem install rspec or clone, build, install - See https://wiki.github.com/dchelimsky/rspec
This feature is coming soon. Sit tight!