Re: [rspec-users] Notes on upgrading from RSpec 1 to RSpec 2

2011-02-02 Thread Kurt
We haven't had the time to try to isolate the cause of the slowdown, but whatever the cause, it seems to be widespread as I have seen others reporting slowdowns of the same magnitude we have experienced. Our suite of 700 tests used to run in about 1 minute and on the same machine, with the min

[rspec-users] [RAILS] [rspec 2.4.0] helper spec works but rails escapes all output

2011-02-02 Thread Rob Westgeest
Hi, rspec version: 2.4.0 Given this helper - snippet: def participants_summary table table.participants.collect{|participant| show_short_participant_link(participant) }.join(', ') end def show_table_link(table) link_to(table.name, :action => :show, :id => table) end --- and