CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sat, 30 Aug 2025 12:49:45 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100310140837
location: https://web.archive.org/web/20100310140837/https://github.com/rspec/rspec-rails/tree/v2.0.0.a4
server-timing: captures_list;dur=1.489649, exclusion.robots;dur=0.047330, exclusion.robots.policy;dur=0.020955, esindex;dur=0.021501, cdx.remote;dur=31.832764, LoadShardBlock;dur=209.184904, PetaboxLoader3.datanode;dur=80.413274, PetaboxLoader3.resolve;dur=52.452970
x-app-server: wwwb-app210
x-ts: 302
x-tr: 291
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app210; 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 12:49:46 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Wed, 10 Mar 2010 14:08:37 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "b5702355bb6a85de6022cf7bc1ddfbf2"
x-archive-orig-x-runtime: 170ms
x-archive-orig-content-length: 24687
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: iso-8859-1
memento-datetime: Wed, 10 Mar 2010 14:08:37 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Wed, 10 Mar 2010 14:08:37 GMT", ; rel="memento"; datetime="Wed, 10 Mar 2010 14:08:37 GMT", ; rel="next memento"; datetime="Thu, 03 Jun 2010 19:14:36 GMT", ; rel="last memento"; datetime="Tue, 26 Oct 2010 15:56:05 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_14_20100310125518_crawl100-c/52_14_20100310140527_crawl101.arc.gz
server-timing: captures_list;dur=0.788994, exclusion.robots;dur=0.032369, exclusion.robots.policy;dur=0.015156, esindex;dur=0.017600, cdx.remote;dur=10.215579, LoadShardBlock;dur=276.280139, PetaboxLoader3.datanode;dur=226.547739, PetaboxLoader3.resolve;dur=311.091976, load_resource;dur=327.719102
x-app-server: wwwb-app210
x-ts: 200
x-tr: 711
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-rails at v2.0.0.a4 - GitHub
This service is courtesy of Pledgie.
rspec / rspec-rails
- Source
- Commits
- Network (9)
- Issues (2)
- Wiki (1)
- Graphs
-
Tag:
v2.0.0.a4
click here to add a description
click here to add a homepage
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
Rspec-2 for Rails-3 — Read more
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Fri Jan 22 05:41:59 -0800 2010 | move rails to tmp - don't ignore rails [dchelimsky] |
![]() |
README.markdown | Sun Jan 24 18:35:03 -0800 2010 | add simple redirect_to matcher - wraps assert_... [dchelimsky] |
![]() |
Rakefile | Sun Jan 24 20:08:29 -0800 2010 | add some requires [dchelimsky] |
![]() |
example_app_template.rb | Thu Feb 04 20:41:48 -0800 2010 | add lib/rspec-rails so rails+bundler can find it [dchelimsky] |
![]() |
lib/ | Thu Feb 04 20:41:48 -0800 2010 | add lib/rspec-rails so rails+bundler can find it [dchelimsky] |
![]() |
rspec-rails.gemspec | Thu Feb 04 20:41:48 -0800 2010 | add lib/rspec-rails so rails+bundler can find it [dchelimsky] |
README.markdown
RSpec-2 for Rails-3
Backwards compatibility
None. This is a rewrite of the rspec-rails extension designed to work with rails-3.x and rspec-2.x. It will not work with older versions of either rspec or rails.
Current state
Currently in super-pre-alpha state - explore at your own risk!
Install:
git clone git://github.com/rspec/rspec-dev
cd rspec-dev
rake git:clone
rake gem:build
rake gem:install
This installs the following gems:
- rspec
- rspec-core
- rspec-expectations
- rspec-mocks
- rspec-rails
What works
Currently supported:
- controller specs in spec/controllers
- no view isolation yet
- model specs in spec/models
- request specs in spec/requests
- these wrap rails integration tests
- rails assertions
- webrat matchers
- rails-specific matchers
- response.should redirect_to(...)
- wraps assert_redirected_to
- only works with should (not should_not)
- response.should redirect_to(...)
- generators
- borrowed from José Valim's third_rails repo on github
- the generators work, but not all the generated specs work yet :(
Known issues
None (or very little) of the following are supported yet (but will be soon):
- rails-specific matchers
- only supports "response.should redirect_to(..)"
- isolation from views in controller specs
- view specs
- helper specs
- routing specs