From 340b4a30d03e4b079724e02dc33bf1788a24a975 2012-10-09 17:38:46 From: Jean-Philippe Lang Date: 2012-10-09 17:38:46 Subject: [PATCH] Removed invalid/duplicate test. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10582 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/functional/timelog_controller_test.rb b/test/functional/timelog_controller_test.rb index c83d4d1..24893fd 100644 --- a/test/functional/timelog_controller_test.rb +++ b/test/functional/timelog_controller_test.rb @@ -518,13 +518,6 @@ class TimelogControllerTest < ActionController::TestCase def test_index_last_week Date.stubs(:today).returns('2011-12-15'.to_date) - get :index, :period => 'current_week' - assert_equal '2011-12-05'.to_date, assigns(:from) - assert_equal '2011-12-11'.to_date, assigns(:to) - end - - def test_index_last_week - Date.stubs(:today).returns('2011-12-15'.to_date) get :index, :period => 'last_week' assert_equal '2011-12-05'.to_date, assigns(:from) assert_equal '2011-12-11'.to_date, assigns(:to)