]> source.dussan.org Git - redmine.git/commitdiff
Fixed test/functional/sessions_test.rb breaking when run alone (#12285)
authorJean-Baptiste Barth <jeanbaptiste.barth@gmail.com>
Thu, 1 Nov 2012 13:23:57 +0000 (13:23 +0000)
committerJean-Baptiste Barth <jeanbaptiste.barth@gmail.com>
Thu, 1 Nov 2012 13:23:57 +0000 (13:23 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10784 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/sessions_test.rb

index d469f50504f7486b2174513f28c56bb65ad0e51c..2d4066ad09ebb9273015f6b274c27b00f1701484 100644 (file)
@@ -20,6 +20,8 @@ require File.expand_path('../../test_helper', __FILE__)
 class SessionStartTest < ActionController::TestCase
   tests AccountController
 
+  fixtures :users
+
   def test_login_should_set_session_timestamps
     post :login, :username => 'jsmith', :password => 'jsmith'
     assert_response 302
@@ -32,6 +34,8 @@ end
 class SessionsTest < ActionController::TestCase
   tests WelcomeController
 
+  fixtures :users
+
   def test_atime_from_user_session_should_be_updated
     created = 2.hours.ago.utc.to_i
     get :index, {}, {:user_id => 2, :ctime => created, :atime => created}