mirror of
https://github.com/redmine/redmine.git
synced 2025-11-02 03:15:57 +01:00
add functional test to create non default document category (#11665)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10219 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -126,6 +126,23 @@ LOREM
|
|||||||
assert_template 'new'
|
assert_template 'new'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_create_non_default_category
|
||||||
|
@request.session[:user_id] = 2
|
||||||
|
category2 = Enumeration.find_by_name('User documentation')
|
||||||
|
category2.update_attributes(:is_default => true)
|
||||||
|
category1 = Enumeration.find_by_name('Uncategorized')
|
||||||
|
post :create,
|
||||||
|
:project_id => 'ecookbook',
|
||||||
|
:document => { :title => 'no default',
|
||||||
|
:description => 'This is a new document',
|
||||||
|
:category_id => category1.id }
|
||||||
|
assert_redirected_to '/projects/ecookbook/documents'
|
||||||
|
doc = Document.find_by_title('no default')
|
||||||
|
assert_not_nil doc
|
||||||
|
assert_equal category1.id, doc.category_id
|
||||||
|
assert_equal category1, doc.category
|
||||||
|
end
|
||||||
|
|
||||||
def test_edit
|
def test_edit
|
||||||
@request.session[:user_id] = 2
|
@request.session[:user_id] = 2
|
||||||
get :edit, :id => 1
|
get :edit, :id => 1
|
||||||
|
|||||||
Reference in New Issue
Block a user