summaryrefslogtreecommitdiffstats
path: root/test/unit/testing_test.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-04-22 11:56:47 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-04-22 11:56:47 +0000
commitb960470d7817843906d42628d8bb4228ee49b2d9 (patch)
tree9c16e3fe4ae68e36e4d3c6c0dfebb267eab9a774 /test/unit/testing_test.rb
parent4a3f038595922dc5fef9f3541363a16078a5ace9 (diff)
downloadredmine-b960470d7817843906d42628d8bb4228ee49b2d9.tar.gz
redmine-b960470d7817843906d42628d8bb4228ee49b2d9.zip
Removed object_daddy dependency.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9469 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/testing_test.rb')
-rw-r--r--test/unit/testing_test.rb46
1 files changed, 0 insertions, 46 deletions
diff --git a/test/unit/testing_test.rb b/test/unit/testing_test.rb
deleted file mode 100644
index 011162743..000000000
--- a/test/unit/testing_test.rb
+++ /dev/null
@@ -1,46 +0,0 @@
-# Redmine - project management software
-# Copyright (C) 2006-2011 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__)
-
-# Test case that checks that the testing infrastructure is setup correctly.
-class TestingTest < ActiveSupport::TestCase
- def test_working
- assert true
- end
-
- test "Rails 'test' case syntax" do
- assert true
- end
-
- test "Generating with object_daddy" do
- assert_difference "IssueStatus.count" do
- IssueStatus.generate!
- end
- end
-
- should "work with shoulda" do
- assert true
- end
-
- context "works with a context" do
- should "work" do
- assert true
- end
- end
-
-end