mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Guard ruby/spec with spec/mspec/tool/wrap_with_guard.rb
This commit is contained in:
parent
350bc29107
commit
835a495608
Notes:
git
2021-05-27 14:42:36 +09:00
164 changed files with 4474 additions and 3982 deletions
|
|
@ -1,24 +1,27 @@
|
|||
require_relative '../../../spec_helper'
|
||||
require 'matrix'
|
||||
|
||||
describe "Matrix::EigenvalueDecomposition#initialize" do
|
||||
it "raises an error if argument is not a matrix" do
|
||||
-> {
|
||||
Matrix::EigenvalueDecomposition.new([[]])
|
||||
}.should raise_error(TypeError)
|
||||
-> {
|
||||
Matrix::EigenvalueDecomposition.new(42)
|
||||
}.should raise_error(TypeError)
|
||||
end
|
||||
ruby_version_is ""..."3.1" do
|
||||
require 'matrix'
|
||||
|
||||
it "raises an error if matrix is not square" do
|
||||
-> {
|
||||
Matrix::EigenvalueDecomposition.new(Matrix[[1, 2]])
|
||||
}.should raise_error(Matrix::ErrDimensionMismatch)
|
||||
end
|
||||
describe "Matrix::EigenvalueDecomposition#initialize" do
|
||||
it "raises an error if argument is not a matrix" do
|
||||
-> {
|
||||
Matrix::EigenvalueDecomposition.new([[]])
|
||||
}.should raise_error(TypeError)
|
||||
-> {
|
||||
Matrix::EigenvalueDecomposition.new(42)
|
||||
}.should raise_error(TypeError)
|
||||
end
|
||||
|
||||
it "never hangs" do
|
||||
m = Matrix[ [0,0,0,0,0], [0,0,0,0,1], [0,0,0,1,0], [1,1,0,0,1], [1,0,1,0,1] ]
|
||||
Matrix::EigenvalueDecomposition.new(m).should_not == "infinite loop"
|
||||
it "raises an error if matrix is not square" do
|
||||
-> {
|
||||
Matrix::EigenvalueDecomposition.new(Matrix[[1, 2]])
|
||||
}.should raise_error(Matrix::ErrDimensionMismatch)
|
||||
end
|
||||
|
||||
it "never hangs" do
|
||||
m = Matrix[ [0,0,0,0,0], [0,0,0,0,1], [0,0,0,1,0], [1,1,0,0,1], [1,0,1,0,1] ]
|
||||
Matrix::EigenvalueDecomposition.new(m).should_not == "infinite loop"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue