I believe that I have followed these directions exactly: http:// rspec.rubyforge.org/documentation/rails/install.html My new spec tests work, but my old Test::Unit test don''t produce any output. The only clue I have anything is happening at all are these messages in log/test.log: Spec::Rails::HelperEvalContextController: missing default helper path spec/rails/helper_eval_context_helper Spec::Rails::ViewSpecController: missing default helper path spec/ rails/view_spec_helper What am I missing, and I how do I solve this?
I believe that I have followed these directions exactly: http:// rspec.rubyforge.org/documentation/rails/install.html My new spec tests work, but my old Test::Unit test don''t produce any output. The only clue I have anything is happening at all are these messages in log/test.log: Spec::Rails::HelperEvalContextController: missing default helper path spec/rails/helper_eval_context_helper Spec::Rails::ViewSpecController: missing default helper path spec/ rails/view_spec_helper What am I missing, and I how do I solve this?
On 12/12/06, Bryan Liles <bryan at osesm.com> wrote:> I believe that I have followed these directions exactly: http:// > rspec.rubyforge.org/documentation/rails/install.html > > My new spec tests work, but my old Test::Unit test don''t produce any > output. The only clue I have anything is happening at all are these > messages in log/test.log: > > Spec::Rails::HelperEvalContextController: missing default helper path > spec/rails/helper_eval_context_helper > Spec::Rails::ViewSpecController: missing default helper path spec/ > rails/view_spec_helper > > What am I missing, and I how do I solve this?Try to remove all the code from vendor/plugins/rspec_on_rails/init.rb (but don''t remove the file). This is fixed on trunk. Aslak> _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users >
On Dec 12, 2006, at 2:53 PM, aslak hellesoy wrote:> On 12/12/06, Bryan Liles <bryan at osesm.com> wrote: >> I believe that I have followed these directions exactly: http:// >> rspec.rubyforge.org/documentation/rails/install.html >> >> My new spec tests work, but my old Test::Unit test don''t produce any >> output. The only clue I have anything is happening at all are these >> messages in log/test.log: >> >> Spec::Rails::HelperEvalContextController: missing default helper path >> spec/rails/helper_eval_context_helper >> Spec::Rails::ViewSpecController: missing default helper path spec/ >> rails/view_spec_helper >> >> What am I missing, and I how do I solve this? > > Try to remove all the code from vendor/plugins/rspec_on_rails/init.rb > (but don''t remove the file). > > This is fixed on trunk. > > AslakThanks Aslak. This solved my problem.