66 lines
2.1 KiB
Ruby
66 lines
2.1 KiB
Ruby
# encoding: utf-8
|
|
#
|
|
# This file is a part of Redmine Q&A (redmine_questions) plugin,
|
|
# Q&A plugin for Redmine
|
|
#
|
|
# Copyright (C) 2011-2018 RedmineUP
|
|
# http://www.redmineup.com/
|
|
#
|
|
# redmine_questions is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# redmine_questions is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with redmine_questions. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
require File.expand_path('../../test_helper', __FILE__)
|
|
require File.expand_path(File.dirname(__FILE__) + '/../../../../test/test_helper')
|
|
|
|
class RedmineQuestions::CommonViewsTest < ActionDispatch::IntegrationTest
|
|
fixtures :users,
|
|
:projects,
|
|
:roles,
|
|
:members,
|
|
:member_roles,
|
|
:trackers,
|
|
:enumerations,
|
|
:projects_trackers,
|
|
:issues,
|
|
:issue_statuses,
|
|
:versions,
|
|
:trackers,
|
|
:projects_trackers,
|
|
:issue_categories,
|
|
:enabled_modules,
|
|
:workflows,
|
|
:questions,
|
|
:questions_answers,
|
|
:questions_sections
|
|
|
|
fixtures :email_addresses if ActiveRecord::VERSION::MAJOR >= 4
|
|
|
|
RedmineQuestions::TestCase.create_fixtures(Redmine::Plugin.find(:redmine_questions).directory + '/test/fixtures/', [:questions, :questions_answers, :questions_sections])
|
|
|
|
def setup
|
|
@project_1 = Project.find(1)
|
|
EnabledModule.create(:project => @project_1, :name => 'questions')
|
|
end
|
|
|
|
def test_view_activity_with_questions
|
|
log_user('admin', 'admin')
|
|
compatible_request :get, '/activity', :show_questions => 1
|
|
assert_response :success
|
|
end
|
|
|
|
def test_global_search_with_questions
|
|
log_user('admin', 'admin')
|
|
get '/search?q=simple&questions=1'
|
|
assert_response :success
|
|
end
|
|
end
|