Move helper tests to test/helpers (#26504).

git-svn-id: http://svn.redmine.org/redmine/trunk@16930 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2017-07-30 18:23:06 +00:00
parent fac02579cb
commit a9e4b41d4a
18 changed files with 17 additions and 17 deletions

View File

@@ -15,7 +15,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File.expand_path('../../../test_helper', __FILE__) require File.expand_path('../../test_helper', __FILE__)
class ActivitiesHelperTest < Redmine::HelperTest class ActivitiesHelperTest < Redmine::HelperTest
include ActivitiesHelper include ActivitiesHelper

View File

@@ -17,7 +17,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File.expand_path('../../../test_helper', __FILE__) require File.expand_path('../../test_helper', __FILE__)
class ApplicationHelperTest < Redmine::HelperTest class ApplicationHelperTest < Redmine::HelperTest
include ERB::Util include ERB::Util

View File

@@ -15,7 +15,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File.expand_path('../../../test_helper', __FILE__) require File.expand_path('../../test_helper', __FILE__)
class CustomFieldsHelperTest < Redmine::HelperTest class CustomFieldsHelperTest < Redmine::HelperTest
include ApplicationHelper include ApplicationHelper

View File

View File

@@ -15,7 +15,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File.expand_path('../../../test_helper', __FILE__) require File.expand_path('../../test_helper', __FILE__)
class GroupsHelperTest < Redmine::HelperTest class GroupsHelperTest < Redmine::HelperTest
include ERB::Util include ERB::Util

View File

@@ -15,7 +15,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File.expand_path('../../../test_helper', __FILE__) require File.expand_path('../../test_helper', __FILE__)
class IssuesHelperTest < Redmine::HelperTest class IssuesHelperTest < Redmine::HelperTest
include IssuesHelper include IssuesHelper

View File

@@ -15,7 +15,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File.expand_path('../../../test_helper', __FILE__) require File.expand_path('../../test_helper', __FILE__)
class JournalsHelperTest < Redmine::HelperTest class JournalsHelperTest < Redmine::HelperTest
include JournalsHelper include JournalsHelper

View File

@@ -15,7 +15,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File.expand_path('../../../test_helper', __FILE__) require File.expand_path('../../test_helper', __FILE__)
class MembersHelperTest < Redmine::HelperTest class MembersHelperTest < Redmine::HelperTest
include ERB::Util include ERB::Util

View File

@@ -15,7 +15,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File.expand_path('../../../test_helper', __FILE__) require File.expand_path('../../test_helper', __FILE__)
class ProjectsHelperTest < Redmine::HelperTest class ProjectsHelperTest < Redmine::HelperTest
include ApplicationHelper include ApplicationHelper

View File

@@ -15,7 +15,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File.expand_path('../../../test_helper', __FILE__) require File.expand_path('../../test_helper', __FILE__)
class QueriesHelperTest < Redmine::HelperTest class QueriesHelperTest < Redmine::HelperTest
include QueriesHelper include QueriesHelper

View File

@@ -17,7 +17,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File.expand_path('../../../test_helper', __FILE__) require File.expand_path('../../test_helper', __FILE__)
class RoutesHelperTest < Redmine::HelperTest class RoutesHelperTest < Redmine::HelperTest
fixtures :projects, :issues fixtures :projects, :issues

View File

@@ -17,7 +17,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File.expand_path('../../../test_helper', __FILE__) require File.expand_path('../../test_helper', __FILE__)
class SearchHelperTest < Redmine::HelperTest class SearchHelperTest < Redmine::HelperTest
include SearchHelper include SearchHelper

View File

@@ -15,7 +15,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File.expand_path('../../../test_helper', __FILE__) require File.expand_path('../../test_helper', __FILE__)
class SettingsHelperTest < Redmine::HelperTest class SettingsHelperTest < Redmine::HelperTest
include SettingsHelper include SettingsHelper

View File

@@ -15,7 +15,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File.expand_path('../../../test_helper', __FILE__) require File.expand_path('../../test_helper', __FILE__)
class SortHelperTest < Redmine::HelperTest class SortHelperTest < Redmine::HelperTest
include SortHelper include SortHelper

View File

@@ -15,7 +15,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File.expand_path('../../../test_helper', __FILE__) require File.expand_path('../../test_helper', __FILE__)
class TimelogHelperTest < Redmine::HelperTest class TimelogHelperTest < Redmine::HelperTest
include TimelogHelper include TimelogHelper

View File

@@ -15,7 +15,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File.expand_path('../../../test_helper', __FILE__) require File.expand_path('../../test_helper', __FILE__)
class VersionsHelperTest < Redmine::HelperTest class VersionsHelperTest < Redmine::HelperTest
include Rails.application.routes.url_helpers include Rails.application.routes.url_helpers

View File

@@ -15,7 +15,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File.expand_path('../../../test_helper', __FILE__) require File.expand_path('../../test_helper', __FILE__)
class WatchersHelperTest < Redmine::HelperTest class WatchersHelperTest < Redmine::HelperTest
include WatchersHelper include WatchersHelper

View File

@@ -15,7 +15,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File.expand_path('../../../test_helper', __FILE__) require File.expand_path('../../test_helper', __FILE__)
class WikiHelperTest < Redmine::HelperTest class WikiHelperTest < Redmine::HelperTest
include WikiHelper include WikiHelper