Re: [rspec-users] More Examples

2008-11-23 Thread James Byrne
Pau Cor wrote: > James Byrne wrote: >> This is what I see in the console: > The underlining didn't come through in you post, so that doesn't help > us. > > If you post your step matchers, then we can tell you what your columns > need to be. Essentially, for every (.*) in your step matchers, you

Re: [rspec-users] More Examples

2008-11-17 Thread Pau Cor
James Byrne wrote: > This is what I see in the console: The underlining didn't come through in you post, so that doesn't help us. If you post your step matchers, then we can tell you what your columns need to be. Essentially, for every (.*) in your step matchers, you need a column. And they hav

Re: [rspec-users] More Examples

2008-11-17 Thread James Byrne
Matt Wynne wrote: > On 17 Nov 2008, at 20:33, James B. Byrne wrote: >> >> More Examples: >>| initial | after| >>| "ALL CAPS"| "All Caps" | >>| " Squeeze leading space"| "Squeeze Leading Space" | >>|

Re: [rspec-users] More Examples

2008-11-17 Thread Matt Wynne
On 17 Nov 2008, at 20:33, James B. Byrne wrote: I have a feature spec that looks like this: Scenario: The entity common name should be normalized Given 1 valid entity And I am on the edit entity page When I fill in "Common Name" with " ANYThing WronG wITh tHiS? " And I press

[rspec-users] More Examples

2008-11-17 Thread James B. Byrne
I have a feature spec that looks like this: Scenario: The entity common name should be normalized Given 1 valid entity And I am on the edit entity page When I fill in "Common Name" with " ANYThing WronG wITh tHiS? " And I press "Update" Then I should see an update succ