Sha256: 040c21885c530f982a4da6af33fe88beb07801a9585eda7b8504f9c9ca60ec65
Contents?: true
Size: 531 Bytes
Versions: 7
Compression:
Stored size: 531 Bytes
Contents
# encoding: utf-8 # # This file is part of the mbrao gem. Copyright (C) 2013 and above Shogun <shogun_panda@me.com>. # 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
7 entries across 7 versions & 1 rubygems