Re: [rspec-users] [Cucumber] ANN: Cucumber 0.3.4

2009-05-16 Thread Aslak Hellesøy
On May 14, 10:04 am, Julian Leviston wrote: On 15/05/2009, at 12:48 AM, aslak hellesoy wrote: http://github.com/aslakhellesoy/cucumber/blob/173506c4013a7d733c5b492 ... Enjoy! I just did an upgrade and came up with .0.3.5. The last entry I see on you list was .0.3.4 two days ago? Is t

Re: [rspec-users] HowTo Specify A Method is Called Within A Controller's Action

2009-05-16 Thread Phlip
Lee Longmore wrote: I have a controller called ContextsController and, within this, the usual 'create' method. The first line of this method should be: @member = logged_in_member where logged_in_member is a method that, for simplicity's sake, is a private method of the ContextsController and

Re: [rspec-users] HowTo Specify A Method is Called Within A Controller's Action

2009-05-16 Thread David Chelimsky
On Sat, May 16, 2009 at 1:08 AM, Lee Longmore wrote: > > I am new to RSpec and would appreciate some pointers on how to specify the > following for my Rails application... > > I have a controller called ContextsController and, within this, the usual > 'create' method. The first line of this method

Re: [rspec-users] Cucumber tables

2009-05-16 Thread James Byrne
Aslak Hellesøy wrote: > > Which terms do you think we should adopt and where in the wiki should > this be emphasized more clearly? > > Aslak The best suggestion that I can come up with is: Outline Tables for Scenario Outlines and Inline Tables for regular scenarios. As far as the wiki goes th

Re: [rspec-users] [ANN] rSquery 0.1.1

2009-05-16 Thread Ivo Dancet
Op 15-mei-09, om 21:47 heeft aslak hellesoy het volgende geschreven: Hello all rSquery aims to reduce the difficulties involved in writing selenium tests in cucumber environments for webapps that use jQuery. The project contains several methods to help you with writing javascript command

Re: [rspec-users] Cucumber broke my rake tasks! 0.3.5

2009-05-16 Thread Andrew Premdas
2009/5/15 aslak hellesoy : >> Andrew Premdas wrote: >>> >>> Seem to be having a problem with the new releases 0.3.5 which >>> completely breaks my rake tasks http://gist.github.com/112149. >>> >>> WIth the >>> >>>  t.fork = true # Explicitly fork for cucumber 0.3.4 and rails >>> >>> lines added to

[rspec-users] cucumber-java

2009-05-16 Thread Raymond Barlow
Hi all, Does anyone have an example of how to get the cucumber-java simple example running? I would like to use cucumber-java but cannot figure out how. I've gem installed cucumber and cucumber-java. When I run mvn clean package in the simple directory, I get this error: 19:41:48 agentdh-2:~/Dev

[rspec-users] Features running in development mode

2009-05-16 Thread Joe Van Dyk
Hi, On my Rails app, when I run 'rake features', it runs it in development mode. Which is weird. And messes up my development database. What can I do to force it to run in test mode? Joe ___ rspec-users mailing list rspec-users@rubyforge.org http://r

Re: [rspec-users] cucumber-java

2009-05-16 Thread aslak hellesoy
> Hi all, > > Does anyone have an example of how to get the cucumber-java simple example > running? I would like to use cucumber-java but cannot figure out how. > > I've gem installed cucumber and cucumber-java. When I run mvn clean package > in the simple directory, I get this error: > > 19:41:48

Re: [rspec-users] Features running in development mode

2009-05-16 Thread aslak hellesoy
> Hi, > > On my Rails app, when I run 'rake features', it runs it in development > mode.  Which is weird.  And messes up my development database. > > What can I do to force it to run in test mode? > What Cucumber version are you on? Did you upgrade without reading the changelog? (History.txt) Asl

Re: [rspec-users] Cucumber tables

2009-05-16 Thread aslak hellesoy
> Aslak Hellesøy wrote: > >> >> Which terms do you think we should adopt and where in the wiki should >> this be emphasized more clearly? >> >> Aslak > > The best suggestion that I can come up with is: Outline Tables for > Scenario Outlines and Inline Tables for regular scenarios. > > As far as the

[rspec-users] RSpec support on .Net with Gallio.

2009-05-16 Thread Jeff Brown
Hi, I'm getting ready to produce an RSpec adapter for use with the Gallio test automation platform (http://www.gallio.org/) on the .Net DLR via IronRuby. The idea is to open up RSpec to a wider audience of .Net developers who might like to write their tests, *ahem* specs ;-), using a friendly synt

Re: [rspec-users] RSpec support on .Net with Gallio.

2009-05-16 Thread Rick DeNatale
On Sat, May 16, 2009 at 7:09 PM, Jeff Brown wrote: > Hi, > I'm getting ready to produce an RSpec adapter for use with the Gallio test > automation platform (http://www.gallio.org/) on the .Net DLR via IronRuby. > > The idea is to open up RSpec to a wider audience of .Net developers who > might lik

Re: [rspec-users] RSpec support on .Net with Gallio.

2009-05-16 Thread Jeff Brown
Excellent that's what I wanted to hear. :-) Jeff. -Original Message- From: rspec-users-boun...@rubyforge.org [mailto:rspec-users-boun...@rubyforge.org] On Behalf Of Rick DeNatale Sent: Saturday, May 16, 2009 5:37 PM To: rspec-users Subject: Re: [rspec-users] RSpec support on .Net with G

[rspec-users] what's wrong with my newbie cucumber test?

2009-05-16 Thread Zhenning Guan
forums.feature = Feature: Tasks In order to keep track of tasks People should be able to Create a list of tasks Scenario: List Tasks When I go to the homepage = forums_steps.rb = When /^I go to the homepage$/ do visit "/forums" end = when I run rake features. == Scenario: List Tasks# f