File: hashie_spec.rb

package info (click to toggle)
ruby-hashie 5.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 884 kB
  • sloc: ruby: 7,049; sh: 8; makefile: 6
file content (13 lines) | stat: -rw-r--r-- 265 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'spec_helper'

RSpec.describe Hashie do
  describe '.logger' do
    include_context 'with a logger'

    it 'is available via an accessor' do
      Hashie.logger.info('Fee fi fo fum')

      expect(logger_output).to match('Fee fi fo fum')
    end
  end
end