# encoding: utf-8 require 'spec_helper' describe Function::Proposition, '.call' do subject { object.call } let(:object) { described_class } specify { expect { subject }.to raise_error(NotImplementedError, "#{object}.call must be implemented") } end