Sha256: 0930628fee4903ae433ed5ca7703cecad3a1befbfee713eb2dae5f149fdae7ce

Contents?: true

Size: 529 Bytes

Versions: 2

Compression:

Stored size: 529 Bytes

Contents

# encoding: utf-8
#
# This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
#

require "spec_helper"

describe Mbrao::RenderingEngines::Base do
  let(:reference) { Mbrao::RenderingEngines::Base.new }

  describe "#render" do
    it "should raise an exception" do
      expect { reference.render("CONTENT", {}, {}) }.to raise_error(Mbrao::Exceptions::Unimplemented)
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mbrao-1.2.3 spec/mbrao/rendering_engines/base_spec.rb
mbrao-1.2.2 spec/mbrao/rendering_engines/base_spec.rb