1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
marcandre 2011-07-01 22:25:32 +00:00
parent e7047b8a37
commit d1999f393f

View file

@ -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