Sha256: e18da894eec5426c3e64f54c6ff43ad8b104e518d685fc6a743be811a6f02863

Contents?: true

Size: 507 Bytes

Versions: 2

Compression:

Stored size: 507 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 https://choosealicense.com/licenses/mit.
#

require "spec_helper"

describe Mbrao::RenderingEngines::Base do
  subject{ Mbrao::RenderingEngines::Base.new }

  describe "#render" do
    it "should raise an exception" do
      expect { subject.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.6.2 spec/mbrao/rendering_engines/base_spec.rb
mbrao-1.6.1 spec/mbrao/rendering_engines/base_spec.rb