mirror of
				https://github.com/redmine/redmine.git
				synced 2025-10-31 18:36:07 +01:00 
			
		
		
		
	git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4174 e93f8b46-1217-0410-a6f0-8f06a7374b81
		
			
				
	
	
		
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| require File.dirname(__FILE__) + '/../test_helper'
 | |
| 
 | |
| class PreviewsControllerTest < ActionController::TestCase
 | |
|   fixtures :all
 | |
| 
 | |
|   def test_preview_new_issue
 | |
|     @request.session[:user_id] = 2
 | |
|     post :issue, :project_id => '1', :issue => {:description => 'Foo'}
 | |
|     assert_response :success
 | |
|     assert_template 'preview'
 | |
|     assert_not_nil assigns(:description)
 | |
|   end
 | |
|                               
 | |
|   def test_preview_issue_notes
 | |
|     @request.session[:user_id] = 2
 | |
|     post :issue, :project_id => '1', :id => 1, :issue => {:description => Issue.find(1).description}, :notes => 'Foo'
 | |
|     assert_response :success
 | |
|     assert_template 'preview'
 | |
|     assert_not_nil assigns(:notes)
 | |
|   end
 | |
| 
 | |
|   def test_news
 | |
|     get :news, :project_id => 1,
 | |
|                   :news => {:title => '',
 | |
|                             :description => 'News description',
 | |
|                             :summary => ''}
 | |
|     assert_response :success
 | |
|     assert_template 'common/_preview'
 | |
|     assert_tag :tag => 'fieldset', :attributes => { :class => 'preview' },
 | |
|                                    :content => /News description/
 | |
|   end
 | |
| end
 |