0
0
Fork 0
rubella/spec/unit/rubella/weighting/base/parse_spec.rb

12 lines
238 B
Ruby
Raw Normal View History

2015-10-20 11:29:56 +02:00
require 'spec_helper'
describe Rubella::Weighting::Base, '.parse' do
it "raises NotImplementedError" do
weighting = Rubella::Weighting::Base.new
expect{ weighting.parse(nil) }.to raise_error(NotImplementedError)
end
end