0
0
Fork 0
rubella/spec/unit/rubella/output/base/render_spec.rb

12 lines
232 B
Ruby
Raw Normal View History

2015-10-22 09:20:32 +02:00
require 'spec_helper'
describe Rubella::Output::Base, '.render' do
it "raises NotImplementedError" do
output = Rubella::Output::Base.new nil, nil
expect{ output.render }.to raise_error(NotImplementedError)
end
end