Erwin
2012-Nov-27 09:51 UTC
[Rails 3.2] rake test/functionals failing but testing each individual functional tests are OK
Rails 3.2 : running each individual functional test> rake test TEST=test/functional/users/unlocks_controller_test.rb (or ruby -Itest test/functional/users/unlocks_controller_test.rb ) doesn''t fail ... BUT running the all bunch> rake test:functionalsis failing with a lot of routing errors... ...ActionController::RoutingError: No route matches.. I guess a parameter is missing somewhere in test_helper but which one ? thanks for feedback -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/xsxOQjIGcxYJ. For more options, visit https://groups.google.com/groups/opt_out.
Erwin
2012-Nov-27 10:10 UTC
Re: [Rails 3.2] rake test/functionals failing but testing each individual functional tests are OK
forgot to mention that :> rake test:units > rake test:integrationare running fine ... so it''s a routing issue using rake test:functionals Le mardi 27 novembre 2012 10:51:39 UTC+1, Erwin a écrit :> > Rails 3.2 : running each individual functional test > > rake test TEST=test/functional/users/unlocks_controller_test.rb ( > or ruby -Itest test/functional/users/unlocks_controller_test.rb ) > doesn''t fail ... > BUT > running the all bunch > > rake test:functionals > is failing with a lot of routing errors... > ...ActionController::RoutingError: No route matches.. > > I guess a parameter is missing somewhere in test_helper but which one ? > thanks for feedback > >-- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/yoiUbVo9IuIJ. For more options, visit https://groups.google.com/groups/opt_out.
Erwin
2012-Nov-27 10:26 UTC
Re: [Rails 3.2] rake test/functionals failing but testing each individual functional tests are OK
[SOLVED] my fault ! in order to test some ApplicationController method, I created a dummy TestController .. but I badly inserted the routing inside the test file .... so upon running it ( when running the all bunch) the application routing map was modified ... this is why individual runs were OK not the full bunch... require ''test_helper'' class TestController < ApplicationController def index render :nothing => true end end class AppControllerTest < ActionController::TestCase include Devise::TestHelpers include ApplicationHelper MyApp::Application.routes.draw do controller :test do get ''test/index'' => :index end end Le mardi 27 novembre 2012 11:10:01 UTC+1, Erwin a écrit :> > forgot to mention that : > > rake test:units > > rake test:integration > are running fine ... > so it''s a routing issue using rake test:functionals > > > > Le mardi 27 novembre 2012 10:51:39 UTC+1, Erwin a écrit : >> >> Rails 3.2 : running each individual functional test >> > rake test TEST=test/functional/users/unlocks_controller_test.rb ( >> or ruby -Itest test/functional/users/unlocks_controller_test.rb ) >> doesn''t fail ... >> BUT >> running the all bunch >> > rake test:functionals >> is failing with a lot of routing errors... >> ...ActionController::RoutingError: No route matches.. >> >> I guess a parameter is missing somewhere in test_helper but which one ? >> thanks for feedback >> >>-- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/is_DIVVM2jkJ. For more options, visit https://groups.google.com/groups/opt_out.