CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sat, 30 Aug 2025 04:46:03 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100608132055
location: https://web.archive.org/web/20100608132055/https://github.com/rspec/rspec-expectations
server-timing: captures_list;dur=0.510808, exclusion.robots;dur=0.017887, exclusion.robots.policy;dur=0.007808, esindex;dur=0.010526, cdx.remote;dur=93.927346, LoadShardBlock;dur=357.692724, PetaboxLoader3.datanode;dur=113.175126, PetaboxLoader3.resolve;dur=164.886009
x-app-server: wwwb-app216
x-ts: 302
x-tr: 478
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app216; 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: Sat, 30 Aug 2025 04:46:04 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Tue, 08 Jun 2010 13:20:55 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "5419b73337a7d7f8493f6d806e01b8a6"
x-archive-orig-x-runtime: 56ms
x-archive-orig-content-length: 29954
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Tue, 08 Jun 2010 13:20:55 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Tue, 09 Mar 2010 05:55:26 GMT", ; rel="prev memento"; datetime="Wed, 26 May 2010 03:11:57 GMT", ; rel="memento"; datetime="Tue, 08 Jun 2010 13:20:55 GMT", ; rel="next memento"; datetime="Fri, 12 Aug 2011 21:19:02 GMT", ; rel="last memento"; datetime="Fri, 22 Aug 2025 07:00:32 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_16_20100608095218_crawl103-c/51_16_20100608131835_crawl101.arc.gz
server-timing: captures_list;dur=0.531828, exclusion.robots;dur=0.019314, exclusion.robots.policy;dur=0.007933, esindex;dur=0.012489, cdx.remote;dur=14.815643, LoadShardBlock;dur=157.223135, PetaboxLoader3.datanode;dur=70.899280, PetaboxLoader3.resolve;dur=155.050620, load_resource;dur=113.442665
x-app-server: wwwb-app216
x-ts: 200
x-tr: 351
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
rspec's rspec-expectations at master - GitHub
rspec / rspec-expectations
- Source
- Commits
- Network (7)
- Issues (2)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
README.markdown
RSpec Expectations
rspec-expectations adds should
and should_not
to every object and includes
RSpec::Matchers, a library of standard matchers.
Matchers
Matchers are objects used to compose expectations:
result.should eq("this value")
In that example, eq("this value")
returns a Matcher
object that
compares the actual result
to the expected "this value"
.