aboutsummaryrefslogtreecommitdiffstats
path: root/test/matrix
diff options
context:
space:
mode:
authormarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-07-01 22:25:32 +0000
committermarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-07-01 22:25:32 +0000
commitd1999f393faf98610125403dd01e11b532011ed7 (patch)
treec170bddb383245c1171db230192ef997f4b5f6d7 /test/matrix
parente7047b8a373f12ee8debb9f13e2940e17aa5f10e (diff)
downloadruby-d1999f393faf98610125403dd01e11b532011ed7.tar.gz
* test/matrix/test_matrix.rb: remove obsolete test [ruby-core:37714]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32362 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/matrix')
-rw-r--r--test/matrix/test_matrix.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/matrix/test_matrix.rb b/test/matrix/test_matrix.rb
index 13cc32800b..26248e5746 100644
--- a/test/matrix/test_matrix.rb
+++ b/test/matrix/test_matrix.rb
@@ -318,7 +318,6 @@ class TestMatrix < Test::Unit::TestCase
def test_exp
assert_equal(Matrix[[67,96],[48,99]], Matrix[[7,6],[3,9]] ** 2)
assert_equal(Matrix.I(5), Matrix.I(5) ** -1)
- assert_raise(Matrix::ErrOperationNotImplemented) { Matrix.I(5) ** 1.0 }
assert_raise(Matrix::ErrOperationNotDefined) { Matrix.I(5) ** Object.new }
end