mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
13 lines
342 B
Ruby
13 lines
342 B
Ruby
require_relative '../../../spec_helper'
|
|
require 'matrix'
|
|
|
|
describe "Matrix::LUPDecomposition#initialize" do
|
|
it "raises an error if argument is not a matrix" do
|
|
-> {
|
|
Matrix::LUPDecomposition.new([[]])
|
|
}.should raise_error(TypeError)
|
|
-> {
|
|
Matrix::LUPDecomposition.new(42)
|
|
}.should raise_error(TypeError)
|
|
end
|
|
end
|