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

12 lines
238 B
Ruby

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