CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sat, 23 Aug 2025 04:28:14 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100308115740
location: https://web.archive.org/web/20100308115740/https://github.com/rspec/rspec-core/issues/
server-timing: captures_list;dur=1.096320, exclusion.robots;dur=0.045238, exclusion.robots.policy;dur=0.028483, esindex;dur=0.015519, cdx.remote;dur=28.575958, LoadShardBlock;dur=1661.869830, PetaboxLoader3.resolve;dur=190.428481, PetaboxLoader3.datanode;dur=1270.646280
x-app-server: wwwb-app202
x-ts: 302
x-tr: 1765
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app202; 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, 23 Aug 2025 04:28:15 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Mon, 08 Mar 2010 11:57:40 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "d4deaa254a9d4e5e68379373306afef3"
x-archive-orig-x-runtime: 197ms
x-archive-orig-content-length: 27894
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: Mon, 08 Mar 2010 11:57:40 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sat, 06 Mar 2010 15:52:24 GMT", ; rel="prev memento"; datetime="Sat, 06 Mar 2010 15:52:24 GMT", ; rel="memento"; datetime="Mon, 08 Mar 2010 11:57:40 GMT", ; rel="next memento"; datetime="Sat, 07 Aug 2010 16:52:49 GMT", ; rel="last memento"; datetime="Fri, 25 Apr 2025 09:25:57 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_20100308115441_crawl100-c/52_14_20100308115709_crawl101.arc.gz
server-timing: captures_list;dur=0.468154, exclusion.robots;dur=0.022069, exclusion.robots.policy;dur=0.013146, esindex;dur=0.008539, cdx.remote;dur=111.335881, LoadShardBlock;dur=182.144282, PetaboxLoader3.datanode;dur=160.410252, load_resource;dur=217.935150, PetaboxLoader3.resolve;dur=140.233716
x-app-server: wwwb-app202
x-ts: 200
x-tr: 570
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
Issues - rspec/rspec-core - GitHub
rspec / rspec-core
- Source
- Commits
- Network (6)
- Issues (5)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
Sort By:
Priority
Priority
|
Votes
Votes
|
Last Updated
Last Updated
Loading…
-
Add a --drb command line switch with an option for specifying port.
Comments
Please log in to comment. -
rspec-core's cukes fail against jruby
0 comments Created about 20 hours ago by dchelimskyrspec-2 seems to work w/ jruby, but there is some sort of load path problem running rspec-core-2's cukes against jruby (using rvm):
$ ruby -S cucumber features/command_line/example_name_option.feature:44 Using the default profile... ... expected: /1\ example,\ 0\ failures/, got: "\n----------------------------------------------------------------------\n/Users/dchelimsky/projects/rspec2/repos/rspec-core/lib/rspec/core.rb:46:in `require': no such file to load -- rspec/expectations (LoadError)\n\tfrom /Users/dchelimsky/projects/rspec2/repos/rspec-core/lib/rspec/core.rb:46\n\tfrom /Users/dchelimsky/projects/rspec2/repos/rspec-core/lib/rspec/core.rb:1:in `require'\n\tfrom /Users/dchelimsky/projects/rspec2/repos/rspec-core/lib/rspec/autorun.rb:1\n\tfrom /Users/dchelimsky/projects/rspec2/repos/rspec-core/lib/rspec/autorun.rb:2:in `require'\n\tfrom /Users/dchelimsky/projects/rspec2/repos/rspec-core/tmp/aruba/../../bin/rspec:2\n" (using =~) (Rspec::Expectations::ExpectationNotMetError) features/command_line/example_name_option.feature:46:in `Then I should see "1 example, 0 failures"'
Comments
Please log in to comment. -
rspec-1 compatx
Given a file like this:
describe "something" do it "does something" do # .... end end
... you specify lines 1 or 2 and the example will run, but not if you specify line 3. In rspec-1 you can specify any line in the example.
Comments
Please log in to comment. -
feature requestx
As of 2.0.0.beta.2, you can access the running example's metadata hash from an example or before/after(:each). Let's support accessing it from before/after(:all) as well - at least at the example group level. e.g.
describe "something" do before(:all) do running_example_group.metadata[:foo] = 'bar' end it "does something" do running_example.metadata[:example_group][:foo].should eq('bar") # or running_example_group.metadata[:foo].should eq("bar") end end
Comments
Please log in to comment. -
rspec-1 compatxfeature requestx
None of these work in rspec-2, but they all do in rspec-1:
describe "something" do it "does something" do pending # .... end it "does something else" do pending "getting something fixed" # ... end it "does something else" do pending "getting something fixed" do # ... end end
Comments
Please log in to comment.