CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 08 Aug 2025 05:29:54 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090528000950
location: https://web.archive.org/web/20090528000950/https://github.com/dchelimsky/rspec/tree/1.1.99.2
server-timing: captures_list;dur=0.745144, exclusion.robots;dur=0.024466, exclusion.robots.policy;dur=0.009762, esindex;dur=0.015751, cdx.remote;dur=20.811234, LoadShardBlock;dur=180.905281, PetaboxLoader3.datanode;dur=55.721533, PetaboxLoader3.resolve;dur=55.351339
x-app-server: wwwb-app222
x-ts: 302
x-tr: 242
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
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: Fri, 08 Aug 2025 05:29:55 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.31
x-archive-orig-date: Thu, 28 May 2009 00:09:50 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-x-runtime: 412ms
x-archive-orig-etag: "d49c01cc0851670b1c8a9f7e8e43c37d"
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 31169
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Thu, 28 May 2009 00:09:50 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Wed, 18 Feb 2009 08:54:58 GMT", ; rel="prev memento"; datetime="Wed, 18 Feb 2009 08:54:58 GMT", ; rel="memento"; datetime="Thu, 28 May 2009 00:09:50 GMT", ; rel="next memento"; datetime="Thu, 03 Sep 2009 23:16:49 GMT", ; rel="last memento"; datetime="Thu, 15 Apr 2010 08:11:56 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: 52_9_20090527191916_crawl102-c/52_9_20090528000937_crawl101.arc.gz
server-timing: captures_list;dur=0.673428, exclusion.robots;dur=0.022138, exclusion.robots.policy;dur=0.009637, esindex;dur=0.011766, cdx.remote;dur=7.643839, LoadShardBlock;dur=178.093141, PetaboxLoader3.resolve;dur=224.127848, PetaboxLoader3.datanode;dur=107.506618, load_resource;dur=271.962946
x-app-server: wwwb-app222
x-ts: 200
x-tr: 521
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 1.1.99.2 - 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 |
Homepage: | https://rspec.info |
Clone URL: |
git://github.com/dchelimsky/rspec.git
Give this clone URL to anyone.
git clone git://github.com/dchelimsky/rspec.git
|
rspec /
= RSpec * https://rspec.info * https://rubyforge.org/projects/rspec * https://github.com/dchelimsky/rspec/wikis * mailto: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 git clone git://github.com/dchelimsky/rspec.git cd rspec rake gem rake install_gem
This feature is coming soon. Sit tight!