summaryrefslogtreecommitdiff
path: root/spec/ruby/library/matrix/lup_decomposition/initialize_spec.rb
blob: 42f78c7540085ac186077e6532bec3619db594ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require_relative '../../../spec_helper'

ruby_version_is ""..."3.1" do
  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
end