Re: [rspec-users] profile format to give overall time...?

2009-03-13 Thread steven shingler
Hi James, Yep, I mentioned the time command in my original post, I'm looking for a within-cucumber option. :) Thanks, Steven On Fri, Mar 13, 2009 at 2:12 PM, James Byrne wrote: > Steven Shingler wrote: >> Hi all, >> >> How can I get cucumber to tell me how long

Re: [rspec-users] profile format to give overall time...?

2009-03-13 Thread steven shingler
Have jotted a ticket here: http://rspec.lighthouseapp.com/projects/16211/tickets/228-get-cucumber-to-tell-me-how-long-my-entire-feature-set-has-taken-to-run#ticket-228-1 Please edit accordingly :) On Fri, Mar 13, 2009 at 9:58 AM, Joseph Wilk wrote: > steven shingler wrote: >>

Re: [rspec-users] profile format to give overall time...?

2009-03-13 Thread steven shingler
done! Thanks, Steven On Fri, Mar 13, 2009 at 9:36 AM, aslak hellesoy wrote: > > > On Fri, Mar 13, 2009 at 9:42 AM, steven shingler wrote: >> >> Hi all, >> >> How can I get cucumber to tell me how long my entire feature set has >> taken to run? > >

[rspec-users] profile format to give overall time...?

2009-03-13 Thread steven shingler
Hi all, How can I get cucumber to tell me how long my entire feature set has taken to run? (In the same way that RSpec does, for example) I have taken a look at the profile formatter, which is very cool and useful but doesn't give the overall time for the feature 'suite'. I know that (on *nix)

Re: [rspec-users] Cucumber fat client

2008-12-09 Thread steven shingler
Hey Aslak, Doesn't this sound a bit like your Kipling project, which we spoke about at QCon London, back in March? ;) (http://gitorious.org/projects/kipling) I think it would be a great app to have, which would work well inside a web browser, rather than a fat client that customers and managers

Re: [rspec-users] silly partial qu

2008-05-04 Thread steven shingler
4, 2008 at 3:36 PM, Rick DeNatale <[EMAIL PROTECTED]> wrote: > On Sun, May 4, 2008 at 10:16 AM, steven shingler <[EMAIL PROTECTED]> wrote: > > Hi Rick, > > Thanks for your reply. > > You are right that this step is basically testing the basic actions of &

Re: [rspec-users] silly partial qu

2008-05-04 Thread steven shingler
t 11:17 PM, Rick DeNatale <[EMAIL PROTECTED]> wrote: > > On Sat, May 3, 2008 at 4:08 PM, steven shingler <[EMAIL PROTECTED]> wrote: > > hi all, > > > > i'm just trying to check a partial has been rendered, by using: > > response.template.should_rece

[rspec-users] silly partial qu

2008-05-03 Thread steven shingler
hi all, i'm just trying to check a partial has been rendered, by using: response.template.should_receive(:render).with(:partial => "tasks/list") this passes, even if I put something bogus in the partial name, such as: response.template.should_receive(:render).with(:partial => "___tassdfsdfks/list

Re: [rspec-users] story runner on restful_authentication question

2008-04-29 Thread steven shingler
ooh - good spot! thanks :) On Tue, Apr 29, 2008 at 12:36 PM, Rick DeNatale <[EMAIL PROTECTED]> wrote: > On Tue, Apr 29, 2008 at 6:51 AM, steven shingler <[EMAIL PROTECTED]> wrote: > > Thank you for all the replies. > > I'm unable to use ruby-debug, cos am runn

Re: [rspec-users] story runner on restful_authentication question

2008-04-29 Thread steven shingler
rspec step though - is there a quick way of doing that? Cheers, Steven On Mon, Apr 28, 2008 at 9:16 PM, Bart Zonneveld <[EMAIL PROTECTED]> wrote: > > On 28 apr 2008, at 17:31, steven shingler wrote: > > > > > When "the user logs in with username and password&quo

[rspec-users] story runner on restful_authentication question

2008-04-28 Thread steven shingler
Hi all, Have been following: http://www.tomtenthij.co.uk/2008/1/25/rspec-plain-text-story-runner-on-a-fresh-rails-app ..as an introduction into the story runner. It shows how to get a couple of scenarios going to test the restful_authenticated plugin from plain text stories. I thought I'd go comp