summaryrefslogtreecommitdiff
path: root/spec/ruby/library/matrix/lup_decomposition/initialize_spec.rb
blob: 36afb349e60f4f04f8ab71c0575d9b2005d29a22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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