summaryrefslogtreecommitdiffstats
path: root/test/functional
Commit message (Collapse)AuthorAgeFilesLines
* Removed deep nested time entries routes.Jean-Philippe Lang2014-11-161-2/+1
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13609 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Moved new group user to its own action GroupsController#new_users.Jean-Philippe Lang2014-11-161-0/+12
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13602 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Moved new project member to its own action MemberController#new.Jean-Philippe Lang2014-11-151-0/+11
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13600 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed 500 error when displaying a news with comments in reverse order (#18332).Jean-Philippe Lang2014-11-141-0/+11
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13595 e93f8b46-1217-0410-a6f0-8f06a7374b81
* add missing fixtures to test/functional/wiki_controller_test.rbToshi MARUYAMA2014-11-121-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tests fail randomly. <pre> 1) Error: WikiControllerTest#test_show_with_sidebar: ActionView::Template::Error: undefined method `name' for nil:NilClass app/helpers/application_helper.rb:797:in `block in parse_redmine_links' app/helpers/application_helper.rb:757:in `gsub!' app/helpers/application_helper.rb:757:in `parse_redmine_links' app/helpers/application_helper.rb:601:in `block (2 levels) in textilizable' app/helpers/application_helper.rb:600:in `each' app/helpers/application_helper.rb:600:in `block in textilizable' app/helpers/application_helper.rb:621:in `parse_non_pre_blocks' app/helpers/application_helper.rb:599:in `textilizable' app/views/wiki/_content.html.erb:2:in `_app_views_wiki__content_html_erb___3773333740575742579_33736820' app/views/wiki/show.html.erb:44:in `_app_views_wiki_show_html_erb__965327089377623997_33504680' app/controllers/wiki_controller.rb:97:in `show' test/functional/wiki_controller_test.rb:119:in `test_show_with_sidebar' </pre> It can be reproduced by following change. <pre> class WikiControllerTest < ActionController::TestCase fixtures :projects, :users, :roles, :members, :member_roles, :enabled_modules, :wikis, :wiki_pages, :wiki_contents, - :wiki_content_versions, :attachments + :wiki_content_versions, :attachments, + :issues #, :issue_statuses </pre> git-svn-id: http://svn.redmine.org/redmine/trunk@13590 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Adds a role setting for controlling visibility of users: all or members of ↵Jean-Philippe Lang2014-11-112-6/+24
| | | | | | visible projects (#11724). git-svn-id: http://svn.redmine.org/redmine/trunk@13584 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Adds a test for default issue columns order (#18310).Jean-Philippe Lang2014-11-111-0/+10
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13583 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed duplicate test names (#18306).Jean-Philippe Lang2014-11-081-2/+2
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13575 e93f8b46-1217-0410-a6f0-8f06a7374b81
* remove duplicated IssuesControllerTest#test_new_should_select_default_status ↵Toshi MARUYAMA2014-11-081-12/+0
| | | | | | (#5991, #18305) git-svn-id: http://svn.redmine.org/redmine/trunk@13570 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Time entries CSV export should include the tracker and subject of the issue ↵Jean-Philippe Lang2014-11-051-0/+10
| | | | | | (#18269). git-svn-id: http://svn.redmine.org/redmine/trunk@13562 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Typo.Jean-Philippe Lang2014-11-051-1/+1
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13561 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed that parent column should not include issue subject (#13673).Jean-Philippe Lang2014-11-041-0/+11
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13556 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed CSV content for parent issue column (#13608).Jean-Philippe Lang2014-11-041-0/+12
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13555 e93f8b46-1217-0410-a6f0-8f06a7374b81
* add missing fixtures to test/functional/custom_fields_controller_test.rbToshi MARUYAMA2014-11-031-1/+12
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13550 e93f8b46-1217-0410-a6f0-8f06a7374b81
* add missing fixture to test/functional/issue_statuses_controller_test.rbToshi MARUYAMA2014-11-031-1/+1
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13549 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Default status per tracker (#5991).Jean-Philippe Lang2014-11-023-13/+70
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13535 e93f8b46-1217-0410-a6f0-8f06a7374b81
* add missing fixtures to CalendarsControllerTestToshi MARUYAMA2014-10-241-1/+6
| | | | | | | | | | | | | | | | | | Tests fail randomly. <pre> 1) Error: CalendarsControllerTest#test_cross_project_calendar: ActionView::Template::Error: undefined method `name' for nil:NilClass app/helpers/issues_helper.rb:57:in `render_issue_tooltip' app/views/common/_calendar.html.erb:17:in `block in _app_views_common__calendar_html_erb__4084073314711523042_57686480' app/views/common/_calendar.html.erb:12:in `each' app/views/common/_calendar.html.erb:12:in `_app_views_common__calendar_html_erb__4084073314711523042_57686480' app/views/calendars/show.html.erb:30:in `_app_views_calendars_show_html_erb___1639405444546230501_53808060' test/functional/calendars_controller_test.rb:44:in `test_cross_project_calendar' </pre> git-svn-id: http://svn.redmine.org/redmine/trunk@13503 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Adds a single controller for users and groups memberships and support for ↵Jean-Philippe Lang2014-10-233-130/+209
| | | | | | adding multiple projects at once (#11702). git-svn-id: http://svn.redmine.org/redmine/trunk@13498 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Merged rails-4.1 branch (#14534).Jean-Philippe Lang2014-10-2224-214/+147
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13482 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed that preview doesn't show notes when issue project is changed (#17959).Jean-Philippe Lang2014-10-051-0/+8
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13428 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Adds css classes to get sort order on the issue list (#17993).Jean-Philippe Lang2014-10-041-0/+3
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13425 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Removes routes for time entries nested under project/issues.Jean-Philippe Lang2014-10-042-5/+5
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13424 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Let the new time_entry form be submitted without project (#17954).Jean-Philippe Lang2014-10-041-51/+83
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13422 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Expire other sessions on password change (#17796).Jean-Baptiste Barth2014-09-161-0/+12
| | | | | | | Contributed by Jan Schulz-Hofen. git-svn-id: http://svn.redmine.org/redmine/trunk@13412 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed: The error flash message on session expiration is not in the language ↵Jean-Philippe Lang2014-09-131-0/+15
| | | | | | of the user but of the user of the previous request (#17023). git-svn-id: http://svn.redmine.org/redmine/trunk@13391 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed: Files assigned to a version can not be deleted if Issue Tracking ↵Jean-Philippe Lang2014-09-131-0/+10
| | | | | | | | module is disabled (#17163). Patch by Michael Esemplare. git-svn-id: http://svn.redmine.org/redmine/trunk@13390 e93f8b46-1217-0410-a6f0-8f06a7374b81
* add missing fixtures to NewsControllerTestToshi MARUYAMA2014-09-111-1/+3
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13375 e93f8b46-1217-0410-a6f0-8f06a7374b81
* pdf: fix r13368 test name (#17826)Toshi MARUYAMA2014-09-111-1/+1
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13369 e93f8b46-1217-0410-a6f0-8f06a7374b81
* pdf: add test to export issue pdf with UTF-8 U+FFFD (#17826)Toshi MARUYAMA2014-09-111-0/+16
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13368 e93f8b46-1217-0410-a6f0-8f06a7374b81
* use rbpdf gem instead of bundled rfpdf (#17570)Toshi MARUYAMA2014-08-281-9/+0
| | | | | | Contributed by Jun NAITOH. git-svn-id: http://svn.redmine.org/redmine/trunk@13358 e93f8b46-1217-0410-a6f0-8f06a7374b81
* ensure issue pdf test has relations (#17570)Toshi MARUYAMA2014-08-281-0/+3
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13357 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Add time entries custom fields to the context menu for quick bulk edit (#17484).Jean-Philippe Lang2014-07-291-0/+17
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13335 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Don't prepend project name if the version is not shared.Jean-Philippe Lang2014-07-141-1/+1
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13325 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Adds version date as title in #link_to_version (#17431).Jean-Philippe Lang2014-07-141-1/+1
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13324 e93f8b46-1217-0410-a6f0-8f06a7374b81
* add missing fixtures to SettingsControllerTestToshi MARUYAMA2014-07-131-1/+2
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13311 e93f8b46-1217-0410-a6f0-8f06a7374b81
* add missing fixtures to SearchControllerTestToshi MARUYAMA2014-07-131-0/+1
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13306 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Don't redirect to another suburi (#16530).Jean-Philippe Lang2014-07-051-0/+36
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13213 e93f8b46-1217-0410-a6f0-8f06a7374b81
* add test of attachment thumbnail etagToshi MARUYAMA2014-06-081-1/+7
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13175 e93f8b46-1217-0410-a6f0-8f06a7374b81
* add test of attachment download etagToshi MARUYAMA2014-06-021-0/+7
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13174 e93f8b46-1217-0410-a6f0-8f06a7374b81
* use with_settings at ↵Toshi MARUYAMA2014-06-021-6/+6
| | | | | | AttachmentsControllerTest#test_show_text_file_should_send_if_too_big git-svn-id: http://svn.redmine.org/redmine/trunk@13173 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Count users with a single query on group list (#16905).Jean-Philippe Lang2014-05-241-0/+6
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13149 e93f8b46-1217-0410-a6f0-8f06a7374b81
* remove unneeded trailing ';' from ↵Toshi MARUYAMA2014-05-071-1/+1
| | | | | | test/functional/repositories_git_controller_test.rb git-svn-id: http://svn.redmine.org/redmine/trunk@13131 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Field set as read-only still available in the issues list context menu (#16755).Jean-Philippe Lang2014-05-021-0/+12
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13124 e93f8b46-1217-0410-a6f0-8f06a7374b81
* remove unneeded tabs from test/functional/repositories_cvs_controller_test.rbToshi MARUYAMA2014-04-151-1/+1
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13090 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Exclude custom fields with multiple values from time report criteria (#16519).Jean-Philippe Lang2014-04-061-1/+13
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13055 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed that back_url=/ param is ignored (#16467).Jean-Philippe Lang2014-04-051-2/+8
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13040 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixed back url verification (#16466).Jean-Philippe Lang2014-03-291-2/+8
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@13018 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Let user choose an issue of another project when updating a time entry (#16338).Jean-Philippe Lang2014-03-211-0/+22
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@12990 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Don't clear plugins in tests (#16258).Jean-Philippe Lang2014-03-211-3/+6
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@12988 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Don't clear plugins in tests (#16258).Jean-Philippe Lang2014-03-211-1/+2
| | | | git-svn-id: http://svn.redmine.org/redmine/trunk@12987 e93f8b46-1217-0410-a6f0-8f06a7374b81