Re: [rspec-users] cucumber fit step table output

2008-12-29 Thread aslak hellesoy
On Sun, Dec 28, 2008 at 7:19 PM, Emmanuel Pinault wrote: > I think this is not yet implemented. I had the same issue and was told they > are working on it but that they are doing a big refactoring so might not be > in 0.1.13 yet > That's right. You have to wait for the next major release to have

Re: [rspec-users] cucumber fit step table output

2008-12-28 Thread Emmanuel Pinault
something like Given I do something with the following param |Key1|value1|, |Key2| Value2| |Key1|value1| |Key2|Value2| Then your step could look like Given 'I do something with the following .*' do | table| // your logic end Emmanuel On Dec 28, 2008, at 10:40 AM, Jonathan Linowes w

Re: [rspec-users] cucumber fit step table output

2008-12-28 Thread Jonathan Linowes
could you pastie an example? On Dec 28, 2008, at 1:19 PM, Emmanuel Pinault wrote: I think this is not yet implemented. I had the same issue and was told they are working on it but that they are doing a big refactoring so might not be in 0.1.13 yet To work around that issues. I created a he

Re: [rspec-users] cucumber fit step table output

2008-12-28 Thread Emmanuel Pinault
I think this is not yet implemented. I had the same issue and was told they are working on it but that they are doing a big refactoring so might not be in 0.1.13 yet To work around that issues. I created a helper method that can print the table in one line or multiple line. Then call the me