From 340b4a30d03e4b079724e02dc33bf1788a24a975 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Tue, 9 Oct 2012 17:38:46 +0000 Subject: [PATCH] Removed invalid/duplicate test. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10582 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/functional/timelog_controller_test.rb | 7 ------- 1 file changed, 7 deletions(-) diff --git a/test/functional/timelog_controller_test.rb b/test/functional/timelog_controller_test.rb index c83d4d17f..24893fdd0 100644 --- a/test/functional/timelog_controller_test.rb +++ b/test/functional/timelog_controller_test.rb @@ -516,13 +516,6 @@ class TimelogControllerTest < ActionController::TestCase assert_equal '2011-12-18'.to_date, assigns(:to) end - 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'