Re: [rspec-users] questions about meta-programming in a shared_examples group

2010-05-10 Thread David Chelimsky
Hi Stephen, On May 10, 2010, at 8:48 PM, Stephen Bannasch wrote: > I've created a shared_examples group that helps me dry up the testing of a > large set of similar rails controllers. > > These controllers have an html interface but mostly what I am testing with > the shared_examples group is

[rspec-users] questions about meta-programming in a shared_examples group

2010-05-10 Thread Stephen Bannasch
I've created a shared_examples group that helps me dry up the testing of a large set of similar rails controllers. These controllers have an html interface but mostly what I am testing with the shared_examples group is the rendering of four different forms of xml that relate to running a dynami

Re: [rspec-users] Does rspec 2 have fixture support?

2010-05-10 Thread David Chelimsky
On May 10, 2010, at 6:51 PM, Rob Sanheim wrote: > I paired with Chad on Micronaut, and can confirm that fixtures were > not on our priority list. Note that fixtures would be supplied by > rspec-rails, though, not rspec-core (i.e. Micronaut), so other folks > may be working on adding fixture suppo

Re: [rspec-users] Does rspec 2 have fixture support?

2010-05-10 Thread Rob Sanheim
I paired with Chad on Micronaut, and can confirm that fixtures were not on our priority list. Note that fixtures would be supplied by rspec-rails, though, not rspec-core (i.e. Micronaut), so other folks may be working on adding fixture support there. - Rob http://thinkrelevance.com On Mon, May

Re: [rspec-users] What are the common causes of rspec hanging?

2010-05-10 Thread Matt Wynne
You might want to try running the specs with --format specdoc so you can do a better post mortem. Also remember you can look at log/test.log to see what was happening when it hung. On 8 May 2010, at 20:59, RFine wrote: > I'm responsible for a relatively large RoR application, and have been > st