using rails 2.0.2 and ZenTest 3.7.2 I know this must be something dumb I''m doing. But I''m getting this problem both in OSX and ubuntu. On a new rails projects when I run autotest I get the following output ------ loading autotest/rails Dunno! test/test_helper.rb Dunno! README Dunno! Rakefile Dunno! app/helpers/application_helper.rb Dunno! app/controllers/application.rb --- when I install the two rspec plugins, rspec and rspec_on_rails I get the same output followed by every file part of the two pugins, so: --- loading autotest/rails Dunno! test/test_helper.rb Dunno! README Dunno! app/helpers/application_helper.rb Dunno! app/controllers/application.rb Dunno! Rakefile Dunno! vendor/plugins/rspec_on_rails/generators/rspec/templates/script/spec Dunno! vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/helper_spec.rb Dunno! vendor/plugins/rspec_on_rails/Rakefile Dunno! vendor/plugins/rspec_on_rails/spec/rails/example/shared_behaviour_spec.rb Dunno! vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/implicit_helper.rhtml Dunno! vendor/plugins/rspec_on_rails/generators/rspec_controller/templates/helper_spec.rb . etc... --- I know I must be doing something dumb, can someone tell me please? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Hi Andrew, If you don''t already have one, create a file called ".autotest" in the root directory of your rails project. Then add this line to the file: $VERBOSE = false I got this solution from http://www.ruby-forum.com/topic/138407#615877 because I was having the same problem you were. Cheers, Adam Soltys http://adamsoltys.com/ Andrew Gibson wrote:> using rails 2.0.2 and ZenTest 3.7.2 > > I know this must be something dumb I''m doing. But I''m getting this > problem both in OSX and ubuntu. > > On a new rails projects when I run autotest I get the following > output > > ------ > loading autotest/rails > Dunno! test/test_helper.rb > Dunno! README > Dunno! Rakefile > Dunno! app/helpers/application_helper.rb > Dunno! app/controllers/application.rb > --- > when I install the two rspec plugins, rspec and rspec_on_rails I get the > same output followed by every file part of the two pugins, so: > --- > loading autotest/rails > Dunno! test/test_helper.rb > Dunno! README > Dunno! app/helpers/application_helper.rb > Dunno! app/controllers/application.rb > Dunno! Rakefile > Dunno! > vendor/plugins/rspec_on_rails/generators/rspec/templates/script/spec > Dunno! > vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/helper_spec.rb > Dunno! vendor/plugins/rspec_on_rails/Rakefile > Dunno! > vendor/plugins/rspec_on_rails/spec/rails/example/shared_behaviour_spec.rb > Dunno! > vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/implicit_helper.rhtml > Dunno! > vendor/plugins/rspec_on_rails/generators/rspec_controller/templates/helper_spec.rb > . > etc... > --- > > I know I must be doing something dumb, can someone tell me please?-- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
wicked! thanks, that fixed it. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On Jan 14, 2008 8:29 AM, Andrew Gibson <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > wicked! thanks, that fixed it.FYI - all that was happening was that ZenTest-3.7.2 was spitting out the names of files it doesn''t have mapping for by default. That''s fixed in 3.8.0 (coming very soon) so you''ll actually want to get rid of that line in .autotest if you want to be able to use the -v flag to run in verbose mode. Cheers, David> > -- > Posted via http://www.ruby-forum.com/. > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On Jan 14, 9:43 am, "David Chelimsky" <dchelim...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > FYI - all that was happening was that ZenTest-3.7.2 was spitting out > the names of files it doesn''t have mapping for by default.I wonder why he got all those dunnos, though. ///ark --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On Jan 14, 7:29 pm, Andrew Gibson <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> wicked! thanks, that fixed it. > -- > Posted viahttp://www.ruby-forum.com/.On Jan 14, 7:29 pm, Andrew Gibson <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> wicked! thanks, that fixed it. > -- > Posted viahttp://www.ruby-forum.com/.--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---