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'