##// END OF EJS Templates
add missing fixtures to test/functional/wiki_controller_test.rb...
add missing fixtures to test/functional/wiki_controller_test.rb 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
Toshi MARUYAMA -
r13208:f2ddfcda9aec
Show More
Name Size Modified Last Commit Author
/ app / models
repository
attachment.rb Loading ...
auth_source.rb Loading ...
auth_source_ldap.rb Loading ...
board.rb Loading ...
change.rb Loading ...
changeset.rb Loading ...
comment.rb Loading ...
custom_field.rb Loading ...
custom_field_value.rb Loading ...
custom_value.rb Loading ...
document.rb Loading ...
document_category.rb Loading ...
document_category_custom_field.rb Loading ...
enabled_module.rb Loading ...
enumeration.rb Loading ...
group.rb Loading ...
group_anonymous.rb Loading ...
group_builtin.rb Loading ...
group_custom_field.rb Loading ...
group_non_member.rb Loading ...
issue.rb Loading ...
issue_category.rb Loading ...
issue_custom_field.rb Loading ...
issue_priority.rb Loading ...
issue_priority_custom_field.rb Loading ...
issue_query.rb Loading ...
issue_relation.rb Loading ...
issue_status.rb Loading ...
journal.rb Loading ...
journal_detail.rb Loading ...
mail_handler.rb Loading ...
mailer.rb Loading ...
member.rb Loading ...
member_role.rb Loading ...
message.rb Loading ...
news.rb Loading ...
principal.rb Loading ...
project.rb Loading ...
project_custom_field.rb Loading ...
query.rb Loading ...
repository.rb Loading ...
role.rb Loading ...
setting.rb Loading ...
time_entry.rb Loading ...
time_entry_activity.rb Loading ...
time_entry_activity_custom_field.rb Loading ...
time_entry_custom_field.rb Loading ...
time_entry_query.rb Loading ...
token.rb Loading ...
tracker.rb Loading ...
user.rb Loading ...
user_custom_field.rb Loading ...
user_preference.rb Loading ...
version.rb Loading ...
version_custom_field.rb Loading ...
watcher.rb Loading ...
wiki.rb Loading ...
wiki_content.rb Loading ...
wiki_page.rb Loading ...
wiki_redirect.rb Loading ...
workflow_permission.rb Loading ...
workflow_rule.rb Loading ...
workflow_transition.rb Loading ...