summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMarius Balteanu <marius.balteanu@zitec.com>2022-03-20 22:17:41 +0000
committerMarius Balteanu <marius.balteanu@zitec.com>2022-03-20 22:17:41 +0000
commitd9bcb65cb90ead59e1751dd2a87f85566c3e80d2 (patch)
tree0b95ae09dcaad24e89acc16220f37e0132238e70 /test
parent3cee462b672632787070e41fc62a6114f4fd2397 (diff)
downloadredmine-d9bcb65cb90ead59e1751dd2a87f85566c3e80d2.tar.gz
redmine-d9bcb65cb90ead59e1751dd2a87f85566c3e80d2.zip
Remove system test (#6432).
git-svn-id: http://svn.redmine.org/redmine/trunk@21483 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r--test/system/versions_test.rb38
1 files changed, 0 insertions, 38 deletions
diff --git a/test/system/versions_test.rb b/test/system/versions_test.rb
deleted file mode 100644
index f69cdc18b..000000000
--- a/test/system/versions_test.rb
+++ /dev/null
@@ -1,38 +0,0 @@
-# frozen_string_literal: true
-
-# Redmine - project management software
-# Copyright (C) 2006-2022 Jean-Philippe Lang
-#
-# This program 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 2
-# of the License, or (at your option) any later version.
-#
-# This program 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 this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-require File.expand_path('../../application_system_test_case', __FILE__)
-
-class VersionsTest < ApplicationSystemTestCase
- fixtures :projects, :trackers, :projects_trackers, :enabled_modules,
- :issue_statuses, :issues, :versions
-
- def test_index_with_blank_tracker_ids
- with_settings :default_language => 'en', :force_default_language_for_anonymous => '1' do
- visit '/projects/ecookbook/roadmap'
-
- find('#sidebar>form>ul:nth-child(3)>li:nth-child(1)>label>input[type=checkbox]').click
- find('#sidebar>form>ul:nth-child(3)>li:nth-child(2)>label>input[type=checkbox]').click
- find('#sidebar>form>ul:nth-child(3)>li:nth-child(3)>label>input[type=checkbox]').click
- click_on 'Apply'
-
- assert !page.has_css?('table.list.related-issues')
- end
- end
-end