Sha256: a02a9b41f334f64b99eb226adfbd7f0e85011396c764e8aec950587ab6567afd
Contents?: true
Size: 526 Bytes
Versions: 6
Compression:
Stored size: 526 Bytes
Contents
# frozen_string_literal: true 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
6 entries across 6 versions & 1 rubygems