CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 08 Aug 2025 19:27:27 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090422063023
location: https://web.archive.org/web/20090422063023/https://github.com/dchelimsky/rspec/tree/master/
server-timing: captures_list;dur=0.689339, exclusion.robots;dur=0.027230, exclusion.robots.policy;dur=0.012124, esindex;dur=0.013780, cdx.remote;dur=27.553301, LoadShardBlock;dur=652.481375, PetaboxLoader3.datanode;dur=84.073193, PetaboxLoader3.resolve;dur=77.603972
x-app-server: wwwb-app223
x-ts: 302
x-tr: 736
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app223; 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 19:27:28 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.31
x-archive-orig-date: Wed, 22 Apr 2009 06:30:22 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-x-runtime: 269ms
x-archive-orig-etag: "a3b8a2a80323ca99646b35954f699816"
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 33801
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Wed, 22 Apr 2009 06:30:23 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sat, 08 Mar 2008 20:41:23 GMT", ; rel="prev memento"; datetime="Tue, 21 Apr 2009 11:48:10 GMT", ; rel="memento"; datetime="Wed, 22 Apr 2009 06:30:23 GMT", ; rel="next memento"; datetime="Thu, 23 Apr 2009 23:44:12 GMT", ; rel="last memento"; datetime="Sat, 10 Aug 2024 08:39:49 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_9_20090422042204_crawl102-c/51_9_20090422062730_crawl101.arc.gz
server-timing: captures_list;dur=0.708677, exclusion.robots;dur=0.028802, exclusion.robots.policy;dur=0.015033, esindex;dur=0.013504, cdx.remote;dur=37.422841, LoadShardBlock;dur=472.973311, PetaboxLoader3.datanode;dur=346.568255, PetaboxLoader3.resolve;dur=369.511740, load_resource;dur=352.014931
x-app-server: wwwb-app223
x-ts: 200
x-tr: 947
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 |
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
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!