Sha256: ad917743127a8537af9ea0bb20e7ecb78a382d74325ce5298dc4b372a65eac9a

Contents?: true

Size: 245 Bytes

Versions: 3

Compression:

Stored size: 245 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe Function, '.call' do
  subject { object.call }

  let(:object) { described_class }

  specify { expect { subject }.to raise_error(NotImplementedError, "#{object}.call is not implemented") }
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
axiom-0.2.0 spec/unit/axiom/function/class_methods/call_spec.rb
axiom-0.1.1 spec/unit/axiom/function/class_methods/call_spec.rb
axiom-0.1.0 spec/unit/axiom/function/class_methods/call_spec.rb