Hi all,
I'm new to Rspec but loving it so far and looking to use it as a
replacement for a Test::Unit framework I have which drives a web app
via Watir. So far, things have worked very well with Rspec but I can't
get my head around how before/after(:all) blocks would work in nested
groups, or even if what I am doing is possible.
What I want to do is something like this:
describe "This is a set of tests: " do
before(:all) do
puts "this should only appear once"
end
describe "Test 1" do
puts "test 1"
end
describe "Test 2" do
puts "test 2"
end
end
Expecting the before(:all) block to run only once and see something
like:
- this should only appear once
- test 1
- test 2
but what I am getting is:
- this should only appear once
- test 1
- this should only appear once
- test 2
So my question is, how can you add before/after(:all) blocks that run
once and only once for for all examples, if all the examples are
nested in one main describe block? Is that something that's even
possible? I'd appreciate any pointers anyone may have. Thanks!
Regards,
John
on 2009-02-04 10:11
on 2009-02-04 15:09
On Wed, Feb 4, 2009 at 3:07 AM, John Kolokotronis <johnjkle@gmail.com> wrote: > describe "This is a set of tests: " do > end > > - this should only appear once > - test 1 > - this should only appear once > - test 2 > > So my question is, how can you add before/after(:all) blocks that run > once and only once for for all examples, if all the examples are > nested in one main describe block? Is that something that's even > possible? I'd appreciate any pointers anyone may have. Thanks! Right now it's not possible. There's an open ticket on this: http://rspec.lighthouseapp.com/projects/5645/tickets/632
on 2009-02-04 16:33
John Kolokotronis wrote: > describe "This is a set of tests: " do > end > > Why do you want before(:all)? Generally it's use is disregarded, just as global variables are considered harmful, not because they can't be used well, but because 99% of the times they aren't. Scott
on 2009-02-04 16:46
Thanks for the reply David - much appreciated. At least now I know that it can't be done, rather than pursuing it further for now. I'll just have to live without that functionality for now and add it later on if a fix is made available. Regards, John
on 2009-02-04 19:23
> Why do you want before(:all)? Generally it's use is disregarded, just > as global variables are considered harmful, not because they can't be > used well, but because 99% of the times they aren't. Because I want to be able to create a single @browser object at the beginning of my tests and have it passed to all examples. Without nested examples, that works just fine - I can create my browser instance in the before(:all) block and avoid using a global variable. In nested examples, I don't see a good way to do that - I could always set up the browser instance as a global (did that in the past with Test::Unit and many Watir users do so) but I'd like to avoid this. If I didn't use a before(:all) block or a global variable, would there be any way to pass my browser object to all example groups? Currently my tests look like this: describe "A series of tests" do before(:all) do @browser = Watir::Browser.new end it "Test 1: it should go to www.google.com" do @browser.goto("www.google.com") end end Obviously, been able to use nested describe groups would make the tests easier to read for non-coders here and that's why I wanted to use them... Regards, John
on 2009-02-05 08:56
On 4 Feb 2009, at 17:55, John Kolokotronis wrote: >> Why do you want before(:all)? Generally it's use is disregarded, >> just >> as global variables are considered harmful, not because they can't be >> used well, but because 99% of the times they aren't. > > Because I want to be able to create a single @browser object at the > beginning > of my tests and have it passed to all examples. Without nested > examples, that Have you considered using Cucumber rather than RSpec as the driver to run these tests? Matt Wynne http://blog.mattwynne.net http://www.songkick.com
on 2009-02-05 10:22
> Have you considered using Cucumber rather than RSpec as the driver to > run these tests? TBH, I haven't really looked at Cucumber much, as I'm just getting started with Rspec itself. My impression though was that Cucumber replaced the story runner and the way my tests are structured just seems better suited to Rspec, rather than written as user stories...
Please log in before posting. Registration is free and takes only a minute.
Existing account
(Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
Log in with Google account | Log in with Yahoo account
No account? Register here.