Re: [rspec-users] Better visualizations of spec running time besides --profile?

2011-08-31 Thread Andrew Premdas
On 31 August 2011 23:06, John Feminella wrote: > We have about 2,000 specs in a Rails app that take roughly 80 seconds > to run, and I'm trying to improve the performance of things a bit. > > While the profile mode has proven useful so far, it only shows the top > ten slowest specs. Unfortunately,

Re: [rspec-users] Better visualizations of spec running time besides --profile?

2011-08-31 Thread Julian Leviston
Concurrency? Julian On 01/09/2011, at 8:06 AM, John Feminella wrote: > We have about 2,000 specs in a Rails app that take roughly 80 seconds > to run, and I'm trying to improve the performance of things a bit. > > While the profile mode has proven useful so far, it only shows the top > ten slo

[rspec-users] Better visualizations of spec running time besides --profile?

2011-08-31 Thread John Feminella
We have about 2,000 specs in a Rails app that take roughly 80 seconds to run, and I'm trying to improve the performance of things a bit. While the profile mode has proven useful so far, it only shows the top ten slowest specs. Unfortunately, we have lot of specs, and we've picked off all the low-h

Re: [rspec-users] Getting Desired behaviour when I run the program, but spec still fails.

2011-08-31 Thread GB Hoyt
On 08/31/2011 07:09 AM, Ash Moran wrote: > > >From just a quick skim over, these two examples look contradictory: > > it "should throw an error if asked to display a menu that does not exist" > @menu.display_menu(@messenger).should == "#{@menu.txtfile} does not > exist!" > end > > #Here

Re: [rspec-users] Getting Desired behaviour when I run the program, but spec still fails.

2011-08-31 Thread Ash Moran
On 31 Aug 2011, at 09:22, GB Hoyt wrote: > I'm not doing something right with the following spec and code: > https://gist.github.com/1183066 > > My problem lies in the last Spec: > > it "should load the contents of the text file into the action list" do > @menu.action_list.empty?.should == fals

[rspec-users] Getting Desired behaviour when I run the program, but spec still fails.

2011-08-31 Thread GB Hoyt
I'm not doing something right with the following spec and code: https://gist.github.com/1183066 My problem lies in the last Spec: it "should load the contents of the text file into the action list" do @menu.action_list.empty?.should == false @menu.display_menu(@messenger) end My currently pain ra