Sha256: b27eb7a198ce377303c95d3a8838126c13398e40a634048b406e98815fdc829e
Contents?: true
Size: 523 Bytes
Versions: 17
Compression:
Stored size: 523 Bytes
Contents
# # This file is part of the ballast 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 Ballast::Errors::BaseError do subject { Ballast::Errors::BaseError.new("ERROR") } describe ".initialize" do it "should propagate the message also as a response" do expect(subject.message).to eq("ERROR") expect(subject.response).to eq("ERROR") end end end
Version data entries
17 entries across 17 versions & 1 rubygems