[rspec-users] Using semantics in steps

2008-12-18 Thread Andrew Premdas
Hi All, Wanted to put this idea forward, see what you think of it. I'm using Aslaks lorry feature to illustrate this. See http://github.com/aslakhellesoy/cucumber_rails/tree/master/features/step_definitions/lorry_steps.rb . In particular within("table > tr:nth-child(#{pos.to_i+1})") do cli

Re: [rspec-users] [Cucumber] Autotest and multiple scenarios

2008-12-18 Thread Peter Jaros
On Wed, Dec 17, 2008 at 4:58 PM, Tim Walker wrote: > Using AUTOFEATURE=true autospec and have a feature with multiple > scenarios. When we save the feature or steps file AUTOTEST seems to > only run the last scenario. Is this a known issue or are we doing > something boneheaded, or both!? Neithe

Re: [rspec-users] Broken rake tasks

2008-12-18 Thread Andrew Premdas
No I don't think so. I'll post something when I next try and get the tasks to work 2008/12/17 Ivor Paul > HI Andrew > > I am getting the same problem. I only get it when I install > rspec-rails alongside rspec as gems. > > Did you get a resolution to this problem? > > Ivor > > On Thu, Dec 4, 200

Re: [rspec-users] fixtures and associations

2008-12-18 Thread Daniel Lopes
Thanks everybody... Atenciosamente, Daniel Lopes  Area Criações Design, Websites e Sistemas Web Visite: http://www.areacriacoes.com.br/projects http://blog.areacriacoes.com.br/ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 55 (31) 3077-4560 / 55 (3

Re: [rspec-users] fixtures and associations

2008-12-18 Thread Mischa Fierer
oops that last one was supposed to be http://github.com/ianwhite/pickle/tree/master similar names On Thu, Dec 18, 2008 at 8:16 AM, Mischa Fierer wrote: > > http://toolmantim.com/article/2008/10/27/fixtureless_datas_with_machinist_and_sham > > http://www.slideshare.net/toolmantim/cucumbers-pres

Re: [rspec-users] fixtures and associations

2008-12-18 Thread Daniel Lopes
So, I think the problem is my fixture became crazy with id's and not assign the right id for the right object in association when I try use Rails 2 sintax for fixtures ( omitting the ids and using the name of the fixture in the association instead of id ) ... when I change everything to fixed id in

Re: [rspec-users] fixtures and associations

2008-12-18 Thread Mischa Fierer
http://toolmantim.com/article/2008/10/27/fixtureless_datas_with_machinist_and_sham http://www.slideshare.net/toolmantim/cucumbers-presentation http://github.com/tpope/pickler/tree/master On Thu, Dec 18, 2008 at 7:24 AM, Daniel Lopes wrote: > I really don't know what's going on with those hell

Re: [rspec-users] fixtures and associations

2008-12-18 Thread Mark Wilden
On Thu, Dec 18, 2008 at 7:24 AM, Daniel Lopes wrote: > I really don't know what's going on with those hell fixtures, and start > thinking I will never find... I will try migrate all my fixtures to > factory-girl, the only problem are my six hundred examples and no time to > change all. You don't

Re: [rspec-users] fixtures and associations

2008-12-18 Thread Daniel Lopes
I really don't know what's going on with those hell fixtures, and start thinking I will never find... I will try migrate all my fixtures to factory-girl, the only problem are my six hundred examples and no time to change all. Somebody have any link about rspec + factory-girl ? or maybe link to any