summaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-05-01 11:41:15 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-05-01 11:41:15 +0000
commit5b680625c198d8c29031423ab2ac18370b27de07 (patch)
treeb98900482a2d1c4bce7de66dcf59b07a190bfe75 /test/unit
parent6fca0289055fae8f066eeb493a590b35e6f26cc0 (diff)
downloadredmine-5b680625c198d8c29031423ab2ac18370b27de07.tar.gz
redmine-5b680625c198d8c29031423ab2ac18370b27de07.zip
Adds a simple script/about.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9601 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/lib/redmine/info_test.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/unit/lib/redmine/info_test.rb b/test/unit/lib/redmine/info_test.rb
new file mode 100644
index 000000000..e56e67575
--- /dev/null
+++ b/test/unit/lib/redmine/info_test.rb
@@ -0,0 +1,27 @@
+# Redmine - project management software
+# Copyright (C) 2006-2012 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('../../../../test_helper', __FILE__)
+
+class Redmine::InfoTest < ActiveSupport::TestCase
+ def test_environment
+ env = Redmine::Info.environment
+
+ assert_kind_of String, env
+ assert_match 'Redmine version', env
+ end
+end