To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / test / functional / previews_controller_test.rb @ 441:cbce1fd3b1b7
History | View | Annotate | Download (2.13 KB)
| 1 | 441:cbce1fd3b1b7 | Chris | # Redmine - project management software
|
|---|---|---|---|
| 2 | # Copyright (C) 2006-2011 Jean-Philippe Lang
|
||
| 3 | #
|
||
| 4 | # This program is free software; you can redistribute it and/or
|
||
| 5 | # modify it under the terms of the GNU General Public License
|
||
| 6 | # as published by the Free Software Foundation; either version 2
|
||
| 7 | # of the License, or (at your option) any later version.
|
||
| 8 | #
|
||
| 9 | # This program is distributed in the hope that it will be useful,
|
||
| 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
| 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
| 12 | # GNU General Public License for more details.
|
||
| 13 | #
|
||
| 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
|
||
| 16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
| 17 | |||
| 18 | 119:8661b858af72 | Chris | require File.expand_path('../../test_helper', __FILE__) |
| 19 | 14:1d32c0a0efbf | Chris | |
| 20 | class PreviewsControllerTest < ActionController::TestCase |
||
| 21 | fixtures :all
|
||
| 22 | |||
| 23 | def test_preview_new_issue |
||
| 24 | @request.session[:user_id] = 2 |
||
| 25 | post :issue, :project_id => '1', :issue => {:description => 'Foo'} |
||
| 26 | assert_response :success
|
||
| 27 | assert_template 'preview'
|
||
| 28 | assert_not_nil assigns(:description)
|
||
| 29 | end
|
||
| 30 | |||
| 31 | def test_preview_issue_notes |
||
| 32 | @request.session[:user_id] = 2 |
||
| 33 | post :issue, :project_id => '1', :id => 1, :issue => {:description => Issue.find(1).description}, :notes => 'Foo' |
||
| 34 | assert_response :success
|
||
| 35 | assert_template 'preview'
|
||
| 36 | assert_not_nil assigns(:notes)
|
||
| 37 | end
|
||
| 38 | 441:cbce1fd3b1b7 | Chris | |
| 39 | def test_preview_journal_notes_for_update |
||
| 40 | @request.session[:user_id] = 2 |
||
| 41 | post :issue, :project_id => '1', :id => 1, :notes => 'Foo' |
||
| 42 | assert_response :success
|
||
| 43 | assert_template 'preview'
|
||
| 44 | assert_not_nil assigns(:notes)
|
||
| 45 | assert_tag :p, :content => 'Foo' |
||
| 46 | end
|
||
| 47 | 14:1d32c0a0efbf | Chris | |
| 48 | 37:94944d00e43c | chris | def test_news |
| 49 | get :news, :project_id => 1, |
||
| 50 | :news => {:title => '', |
||
| 51 | :description => 'News description', |
||
| 52 | :summary => ''} |
||
| 53 | assert_response :success
|
||
| 54 | assert_template 'common/_preview'
|
||
| 55 | assert_tag :tag => 'fieldset', :attributes => { :class => 'preview' }, |
||
| 56 | :content => /News description/ |
||
| 57 | end
|
||
| 58 | 14:1d32c0a0efbf | Chris | end |