comparison test/functional/previews_controller_test.rb @ 909:cbb26bc654de redmine-1.3

Update to Redmine 1.3-stable branch (Redmine SVN rev 8964)
author Chris Cannam
date Fri, 24 Feb 2012 19:09:32 +0000
parents cbce1fd3b1b7
children 433d4f72a19b
comparison
equal deleted inserted replaced
908:c6c2cbd0afee 909:cbb26bc654de
3 # 3 #
4 # This program is free software; you can redistribute it and/or 4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License 5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2 6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version. 7 # of the License, or (at your option) any later version.
8 # 8 #
9 # This program is distributed in the hope that it will be useful, 9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details. 12 # GNU General Public License for more details.
13 # 13 #
14 # You should have received a copy of the GNU General Public License 14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software 15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 require File.expand_path('../../test_helper', __FILE__) 18 require File.expand_path('../../test_helper', __FILE__)
19 19
20 class PreviewsControllerTest < ActionController::TestCase 20 class PreviewsControllerTest < ActionController::TestCase
21 fixtures :all 21 fixtures :projects, :trackers, :issue_statuses, :issues,
22 :enumerations, :users, :issue_categories,
23 :projects_trackers,
24 :roles,
25 :member_roles,
26 :members,
27 :enabled_modules,
28 :workflows,
29 :journals, :journal_details
22 30
23 def test_preview_new_issue 31 def test_preview_new_issue
24 @request.session[:user_id] = 2 32 @request.session[:user_id] = 2
25 post :issue, :project_id => '1', :issue => {:description => 'Foo'} 33 post :issue, :project_id => '1', :issue => {:description => 'Foo'}
26 assert_response :success 34 assert_response :success
27 assert_template 'preview' 35 assert_template 'preview'
28 assert_not_nil assigns(:description) 36 assert_not_nil assigns(:description)
29 end 37 end
30 38
31 def test_preview_issue_notes 39 def test_preview_issue_notes
32 @request.session[:user_id] = 2 40 @request.session[:user_id] = 2
33 post :issue, :project_id => '1', :id => 1, :issue => {:description => Issue.find(1).description}, :notes => 'Foo' 41 post :issue, :project_id => '1', :id => 1,
42 :issue => {:description => Issue.find(1).description},
43 :notes => 'Foo'
34 assert_response :success 44 assert_response :success
35 assert_template 'preview' 45 assert_template 'preview'
36 assert_not_nil assigns(:notes) 46 assert_not_nil assigns(:notes)
37 end 47 end
38 48
39 def test_preview_journal_notes_for_update 49 def test_preview_journal_notes_for_update
40 @request.session[:user_id] = 2 50 @request.session[:user_id] = 2
41 post :issue, :project_id => '1', :id => 1, :notes => 'Foo' 51 post :issue, :project_id => '1', :id => 1, :notes => 'Foo'
42 assert_response :success 52 assert_response :success
43 assert_template 'preview' 53 assert_template 'preview'