Sha256: 01ec8ee12eb4ffddb225f1c9ad00b829a82547f5e8f904b93be45d84bbba384e

Contents?: true

Size: 737 Bytes

Versions: 6

Compression:

Stored size: 737 Bytes

Contents

require 'spec_helper'

describe Blather do

  describe "while accessing to Logger object" do
    it "should return a Logger instance" do
      Blather.logger.should be_instance_of Logger
    end
  end

  describe "while using the log method" do
    after do
      Blather.default_log_level = :debug
    end

    it "should forward to debug by default" do
      Blather.logger.expects(:debug).with("foo bar").once
      Blather.log "foo bar"
    end

    %w<debug info error fatal>.each do |val|
      it "should forward to #{val} if configured that default level" do
        Blather.logger.expects(val.to_sym).with("foo bar").once
        Blather.default_log_level = val.to_sym
        Blather.log "foo bar"
      end
    end

  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
blather-1.2.0 spec/blather_spec.rb
blather-1.1.4 spec/blather_spec.rb
blather-1.1.3 spec/blather_spec.rb
blather-1.1.2 spec/blather_spec.rb
blather-1.1.1 spec/blather_spec.rb
blather-1.1.0 spec/blather_spec.rb