@@ -1,58 +1,67 | |||
|
1 | 1 | # Redmine - project management software |
|
2 | 2 | # Copyright (C) 2006-2011 Jean-Philippe Lang |
|
3 | 3 | # |
|
4 | 4 | # This program is free software; you can redistribute it and/or |
|
5 | 5 | # modify it under the terms of the GNU General Public License |
|
6 | 6 | # as published by the Free Software Foundation; either version 2 |
|
7 | 7 | # of the License, or (at your option) any later version. |
|
8 | 8 | # |
|
9 | 9 | # This program is distributed in the hope that it will be useful, |
|
10 | 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | 12 | # GNU General Public License for more details. |
|
13 | 13 | # |
|
14 | 14 | # You should have received a copy of the GNU General Public License |
|
15 | 15 | # along with this program; if not, write to the Free Software |
|
16 | 16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
17 | 17 | |
|
18 | 18 | require File.expand_path('../../test_helper', __FILE__) |
|
19 | 19 | |
|
20 | 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, | |
|
30 | :issues, :issue_statuses, :issue_categories | |
|
22 | 31 | |
|
23 | 32 | def test_preview_new_issue |
|
24 | 33 | @request.session[:user_id] = 2 |
|
25 | 34 | post :issue, :project_id => '1', :issue => {:description => 'Foo'} |
|
26 | 35 | assert_response :success |
|
27 | 36 | assert_template 'preview' |
|
28 | 37 | assert_not_nil assigns(:description) |
|
29 | 38 | end |
|
30 | 39 | |
|
31 | 40 | def test_preview_issue_notes |
|
32 | 41 | @request.session[:user_id] = 2 |
|
33 | 42 | post :issue, :project_id => '1', :id => 1, :issue => {:description => Issue.find(1).description}, :notes => 'Foo' |
|
34 | 43 | assert_response :success |
|
35 | 44 | assert_template 'preview' |
|
36 | 45 | assert_not_nil assigns(:notes) |
|
37 | 46 | end |
|
38 | 47 | |
|
39 | 48 | def test_preview_journal_notes_for_update |
|
40 | 49 | @request.session[:user_id] = 2 |
|
41 | 50 | post :issue, :project_id => '1', :id => 1, :notes => 'Foo' |
|
42 | 51 | assert_response :success |
|
43 | 52 | assert_template 'preview' |
|
44 | 53 | assert_not_nil assigns(:notes) |
|
45 | 54 | assert_tag :p, :content => 'Foo' |
|
46 | 55 | end |
|
47 | 56 | |
|
48 | 57 | def test_news |
|
49 | 58 | get :news, :project_id => 1, |
|
50 | 59 | :news => {:title => '', |
|
51 | 60 | :description => 'News description', |
|
52 | 61 | :summary => ''} |
|
53 | 62 | assert_response :success |
|
54 | 63 | assert_template 'common/_preview' |
|
55 | 64 | assert_tag :tag => 'fieldset', :attributes => { :class => 'preview' }, |
|
56 | 65 | :content => /News description/ |
|
57 | 66 | end |
|
58 | 67 | end |
General Comments 0
You need to be logged in to leave comments.
Login now