Re: [rspec-users] [Cucumber:4066] Cucumber vs, RSpec

2010-04-20 Thread John Goodsen
.google.com/group/cukes?hl=en. > >>> > >>> > >> > >> -- > >> You received this message because you are subscribed to the Google > Groups "Cukes" group. > >> To post to this group, send email to cu...@googlegroups.com. > >> To u

Re: [rspec-users] [cucumber] How to DRY up table data that I'm seeing across tests ?

2009-05-06 Thread John Goodsen
ey don't, then it was just noise. Still, how hard would it be to have some kind of a include_partial '...' behavior to cucumber tests ? There are always going to be times when the details are important enough that they should be seen in the test and we want to express i

Re: [rspec-users] [cucumber] How to DRY up table data that I'm seeing across tests ?

2009-05-06 Thread John Goodsen
Another thing I'm looking into is trying to hook into the visitor/formatting stuff and just spit out the extra data fixture data when the test runs... thoughts anyone? On Wed, May 6, 2009 at 2:13 PM, John Goodsen wrote: > I have the following step that I want to re-use in several scenar

[rspec-users] [cucumber] How to DRY up table data that I'm seeing across tests ?

2009-05-06 Thread John Goodsen
erriding some rendering - but it feels like a bad hack. -- John Goodsen RADSoft / Better Software Faster jgood...@radsoft.comLean/Agile/XP/Scrum Coaching and Training http://www.radsoft.com Ruby on Rails and Java Solutions ___

Re: [rspec-users] BDD for C#?

2009-04-28 Thread John Goodsen
hours before you replied or fixed things - as a result, cucumber-java is working great for us on this current project! thanks again, -- John Goodsen RADSoft / Better Software Faster jgood...@radsoft.comLean/Agile/XP/Scrum Coaching and Training http://www.radsoft.com

Re: [rspec-users] Cucumber - step negating another expecting step

2009-04-23 Thread John Goodsen
2 of code. > fwiw, +1 on that. refactor to a descriptive method and get used to refactoring cucumber implementations to keep the cukes dry. moist cukes get moldy - my grams taught me that. -- John Goodsen RADSoft / Better Software Faster jgood...@radsoft.comLean/Agi

Re: [rspec-users] Why RSpec?

2009-04-22 Thread John Goodsen
ustomer is. Even if we communicate at the cucumber level with our customer, we still perform our TDD using RSpec on controllers, models and domain objects. Sometimes we use cucumber, sometimes we don't - it all depends on what we're building and who the customer is. -- John Goodsen

Re: [rspec-users] Cucumber ".should contain(expected) does but fails anyway

2009-04-22 Thread John Goodsen
+1. I like it. -- John Goodsen RADSoft / Better Software Faster jgood...@radsoft.comLean/Agile/XP/Scrum Coaching and Training http://www.radsoft.com Ruby on Rails and Java Solutions On Wed, Apr 22, 2009 at 4:22 PM, James Byrne wrote: > David Chelim

Re: [rspec-users] [Cucumber] Tables

2009-04-22 Thread John Goodsen
range of columns you > want for a column hash. (This could work along with my example where you > don't specify a range, just any token, and get the "rest"). > > -- John Goodsen RADSoft / Better Software Faster jgood...@radsoft.comLean/Agile/XP/S

[rspec-users] [cucumber, jruby, windows] - What are you cucumber windows users using for ANSII color in your consoles?

2009-04-21 Thread John Goodsen
Not really a cucumber question, but I'm not seeing ansi colors on a Windows XP consoles. Some googling around says that windows consoles don't support ansii color codes. If this is the case, what are you windows cucumber folks using? thanks, -- John Goodsen RADSof

Re: [rspec-users] [cucumber, jruby] Same steps are being added multiple times

2009-04-20 Thread John Goodsen
Aslak Hellesøy wrote: > On Tue, Apr 14, 2009 at 12:08 AM, John Goodsen > wrote: > >> OK, I'll reproduce in a simple example and create a ticket... >> >> > Excellent - I'll get to it ASAP I never got a ticket from any

Re: [rspec-users] [cucumber, jruby] Same steps are being added multiple t

2009-04-20 Thread John Goodsen
uby -S cucumber features I see the ambiguous steps definition error again, but I'm also seeing argument type mismatch in StepDefinitionExtras... Attached below is the dump of my test run. Hope this helps. thanks in advance, -- John Goodsen RADSoft / Better Software Faster jgood

[rspec-users] [cucumber, jruby] Same steps are being added multiple times?

2009-04-20 Thread John Goodsen
features I see the ambiguous steps definition error again, but I'm also seeing argument type mismatch in StepDefinitionExtras... Attached below is the dump of my test run. Hope this helps. thanks in advance, -- John Goodsen RADSoft / Better Software Faster jgood...@ra

Re: [rspec-users] [cucumber, jruby] Same steps are being added multiple times?

2009-04-13 Thread John Goodsen
OK, I'll reproduce in a simple example and create a ticket... On Sat, Apr 11, 2009 at 3:56 AM, aslak hellesoy wrote: > > > On Fri, Apr 10, 2009 at 5:29 PM, John Goodsen wrote: > >> so I'm still stumped... how do I tell keep cucumber from loading the >> *SAM

[rspec-users] [cucumber, jruby] Same steps are being added multiple times?

2009-04-10 Thread John Goodsen
ber/jruby using the register_steps() method, my test is acting like the step classes is getting added again for each scenario? thanks for any help, John On Thu, Apr 9, 2009 at 2:19 PM, John Goodsen wrote: > Hi all, > > I'm not quite sure I understand how env.rb is loaded in the cu

Re: [rspec-users] [cucumber, jruby] Same steps are being added multiple times?

2009-04-09 Thread John Goodsen
nTheSystem() { } @When("the user navigates to the status tracking page for the order") public void navigatesToStatusTrackingPage() { } @Then("the transaction is displayed as succeeded") public void theTransactionIsDisplayedAsSucceeded() { } } On Thu, Apr 9, 2009 at 2:52 PM,

[rspec-users] [cucumber, jruby] Same steps are being added multiple times?

2009-04-09 Thread John Goodsen
s/support/env.rb I am getting Ambiguous match of my steps - but I only have a single class of steps, NavigationSteps. any ideas what's going on? -- John Goodsen RADSoft / Better Software Faster jgood...@radsoft.comLean/Agile/XP/Scrum Coaching and Training http://www.rad

Re: [rspec-users] a wiki to host Cuke & webrat?

2009-04-06 Thread John Goodsen
I never said it was done - you are supposed to help out Phlip! On Fri, Apr 3, 2009 at 6:52 PM, Phlip wrote: > John Goodsen wrote: > >> this was my vision with rcumber - I haven't worked on it for a few months, >> but it's basically a rails plugin that provides a web

Re: [rspec-users] a wiki to host Cuke & webrat?

2009-04-03 Thread John Goodsen
hout special JS or plugins... > > -- > Phlip > http://www.zeroplayer.com/ > > ___ > rspec-users mailing list > rspec-users@rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users > -- John Goodsen R

Re: [rspec-users] Cucumber - Adding a step definition

2009-03-15 Thread John Goodsen
It's SRP applied to cucumber steps - just do it - keep your steps small and composable Sent from my iPhone On Mar 14, 2009, at 9:18 PM, Matt Wynne wrote: On 15 Mar 2009, at 00:30, Josh Chisholm wrote: That sounds like a great way to avoid the instance variable. Why is a named record pr

Re: [rspec-users] [cucumber] automation and historical

2008-12-22 Thread John Goodsen
ant...just tally up the results and then at the > end build a graph from it. > > Pat > _______ > rspec-users mailing list > rspec-users@rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users > -- John Goodsen