[rspec-users] Cucumber: Before(:all)

2008-09-02 Thread Matt Wynne
Is there a way right now to run some setup code once after environment.rb has loaded but before all the scenarios are run? And how about a teardown after everything's done? cheers, Matt http://blog.mattwynne.net http://songkick.com In case you wondered: The opinions expressed in this ema

Re: [rspec-users] Cucumber: Before(:all)

2008-09-02 Thread aslak hellesoy
On Tue, Sep 2, 2008 at 3:50 PM, Matt Wynne <[EMAIL PROTECTED]> wrote: > Is there a way right now to run some setup code once after environment.rb > has loaded but before all the scenarios are run? Yes. Just use Ruby :-) Put it at the "main level" in one of your ruby files under steps/ > And how

Re: [rspec-users] Cucumber: Before(:all)

2008-09-02 Thread Matt Wynne
On 2 Sep 2008, at 15:24, aslak hellesoy wrote: On Tue, Sep 2, 2008 at 3:50 PM, Matt Wynne <[EMAIL PROTECTED]> wrote: Is there a way right now to run some setup code once after environment.rb has loaded but before all the scenarios are run? Yes. Just use Ruby :-) Put it at the "main level"

Re: [rspec-users] Cucumber: Before(:all)

2008-09-02 Thread aslak hellesoy
On Tue, Sep 2, 2008 at 4:53 PM, Matt Wynne <[EMAIL PROTECTED]> wrote: > On 2 Sep 2008, at 15:24, aslak hellesoy wrote: > >> On Tue, Sep 2, 2008 at 3:50 PM, Matt Wynne <[EMAIL PROTECTED]> wrote: >>> >>> Is there a way right now to run some setup code once after environment.rb >>> has loaded but befo

Re: [rspec-users] Cucumber: Before(:all)

2008-09-02 Thread aidy lewis
Hi, >, aslak hellesoy wrote (sometime today): > at_exit do >.. > end If I had a number of steps, stories and runners where would I put the kernal at_exit method? At the last 'Then' in a step file? At the bottom of that particular runner file? I assume there would be numerous at_exit method

Re: [rspec-users] Cucumber: Before(:all)

2008-09-02 Thread Aslak Hellesøy
Hi, , aslak hellesoy wrote (sometime today): at_exit do .. end If I had a number of steps, stories and runners where would I put the kernal at_exit method? At the last 'Then' in a step file? No, never inside a step. You should only register each at_exit hook once. At the bottom

Re: [rspec-users] Cucumber: Before(:all)

2008-09-02 Thread Matt Wynne
I assume you've followed the Wiki instructions about how to set up Cucumber with Rails: http://github.com/aslakhellesoy/cucumber/wikis (I should move this to a separate Rails page) Then you should have a steps/env.rb file that looks like this: http://github.com/aslakhellesoy/cucumber/tree/master

[rspec-users] RSpec sundry questions

2008-09-02 Thread Greg Hauptmann
Hi, Q1 - Can I assume that the core testing framework (e.g. rails unit testing versus RSpec) is a kind of separate issue to whether you using mocking or not? i.e. you could use Mocha with either the rails unit test framework or Rspec? Or is there something in Rspec that integrates moreso with mock

Re: [rspec-users] RSpec sundry questions

2008-09-02 Thread aslak hellesoy
On Tue, Sep 2, 2008 at 11:05 PM, Greg Hauptmann <[EMAIL PROTECTED]> wrote: > Hi, > > Q1 - Can I assume that the core testing framework (e.g. rails unit > testing versus RSpec) is a kind of separate issue to whether you using > mocking or not? i.e. you could use Mocha with either the rails unit > te

Re: [rspec-users] GiT and RSpec

2008-09-02 Thread Tim Haines
Hi James, Thanks for writing these instructions up in detail. I've just followed them and will play around with them over the next few days. A couple of questions 1) I assume with submodules I can create and switch to branches of the submodules if I want to try my app out with some patches appl

Re: [rspec-users] GiT and RSpec

2008-09-02 Thread Christopher Bailey
I would voice a word of caution on using submodules in Git. Yes, they are similar to svn:externals, but in my experience, they are very fragile. The fragility comes in when/if you need to switch the submodule URL/definition from what it is currently to something else. I've had no end of trouble

Re: [rspec-users] Controller specs erroneously loading views in edge rails?

2008-09-02 Thread Tim Haines
Hi guys, After updating to edge rails I've just struck this problem too. I've just grabbed fresh updates of rspec, rspec-rails, and rails and I'm receiving a few controller spec failures related to view rendering when views shouldn't be rendered (failures relate to mock objects not having expect

Re: [rspec-users] GiT and RSpec

2008-09-02 Thread Pat Maddox
On Tue, Sep 2, 2008 at 5:49 PM, Tim Haines <[EMAIL PROTECTED]> wrote: > Hi James, > > Thanks for writing these instructions up in detail. I've just followed them > and will play around with them over the next few days. A couple of > questions > > 1) I assume with submodules I can create and switc

Re: [rspec-users] `exit?': undefined method `run?' for Test::Unit:Module (

2008-09-02 Thread Daniel Hoey
I had the same problem with some of my specs. Solved by adding require 'test/unit' to the spec file. Not complete sure why this occurs but the Test::Unit.run? method is defined in test/unit.rb. kasutaja wrote: > Why am I getting this error if running from Netbeans or just from > command > line