Sha256: 54da85fea4746359b29a1bcab55d58c94c8cfdbe3f5392c59652c7beb055c5c3
Contents?: true
Size: 496 Bytes
Versions: 16
Compression:
Stored size: 496 Bytes
Contents
require 'spec_helper' describe ActionKitRest do describe 'logging' do it "should have a logger" do ActionKitRest.respond_to?(:logger).should be_truthy end it "should be able to log debug methods" do ActionKitRest.logger.respond_to?(:debug).should be_truthy end it "should be settable" do ActionKitRest.respond_to?(:logger=).should be_truthy log = double() ActionKitRest.logger = log ActionKitRest.logger.should == log end end end
Version data entries
16 entries across 16 versions & 1 rubygems