##// END OF EJS Templates
remove trailing white-spaces from test/functional/previews_controller_test.rb....
Toshi MARUYAMA -
r6709:24718defcd4c
parent child
Show More
@@ -1,58 +1,58
1 # Redmine - project management software
1 # Redmine - project management software
2 # Copyright (C) 2006-2011 Jean-Philippe Lang
2 # Copyright (C) 2006-2011 Jean-Philippe Lang
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 :all
22
22
23 def test_preview_new_issue
23 def test_preview_new_issue
24 @request.session[:user_id] = 2
24 @request.session[:user_id] = 2
25 post :issue, :project_id => '1', :issue => {:description => 'Foo'}
25 post :issue, :project_id => '1', :issue => {:description => 'Foo'}
26 assert_response :success
26 assert_response :success
27 assert_template 'preview'
27 assert_template 'preview'
28 assert_not_nil assigns(:description)
28 assert_not_nil assigns(:description)
29 end
29 end
30
30
31 def test_preview_issue_notes
31 def test_preview_issue_notes
32 @request.session[:user_id] = 2
32 @request.session[:user_id] = 2
33 post :issue, :project_id => '1', :id => 1, :issue => {:description => Issue.find(1).description}, :notes => 'Foo'
33 post :issue, :project_id => '1', :id => 1, :issue => {:description => Issue.find(1).description}, :notes => 'Foo'
34 assert_response :success
34 assert_response :success
35 assert_template 'preview'
35 assert_template 'preview'
36 assert_not_nil assigns(:notes)
36 assert_not_nil assigns(:notes)
37 end
37 end
38
38
39 def test_preview_journal_notes_for_update
39 def test_preview_journal_notes_for_update
40 @request.session[:user_id] = 2
40 @request.session[:user_id] = 2
41 post :issue, :project_id => '1', :id => 1, :notes => 'Foo'
41 post :issue, :project_id => '1', :id => 1, :notes => 'Foo'
42 assert_response :success
42 assert_response :success
43 assert_template 'preview'
43 assert_template 'preview'
44 assert_not_nil assigns(:notes)
44 assert_not_nil assigns(:notes)
45 assert_tag :p, :content => 'Foo'
45 assert_tag :p, :content => 'Foo'
46 end
46 end
47
47
48 def test_news
48 def test_news
49 get :news, :project_id => 1,
49 get :news, :project_id => 1,
50 :news => {:title => '',
50 :news => {:title => '',
51 :description => 'News description',
51 :description => 'News description',
52 :summary => ''}
52 :summary => ''}
53 assert_response :success
53 assert_response :success
54 assert_template 'common/_preview'
54 assert_template 'common/_preview'
55 assert_tag :tag => 'fieldset', :attributes => { :class => 'preview' },
55 assert_tag :tag => 'fieldset', :attributes => { :class => 'preview' },
56 :content => /News description/
56 :content => /News description/
57 end
57 end
58 end
58 end
General Comments 0
You need to be logged in to leave comments. Login now