Sha256: 7027330e16005254c71331e6ecd6c0ee1cc2fb48475d85dafcd479867118857d
Contents?: true
Size: 372 Bytes
Versions: 42
Compression:
Stored size: 372 Bytes
Contents
require 'unit_spec_helper' describe Rpush::Deprecation do it 'prints a warning' do expect(STDERR).to receive(:puts).with("DEPRECATION WARNING: msg") Rpush::Deprecation.warn("msg") end it 'does not print a warning when muted' do expect(STDERR).not_to receive(:puts) Rpush::Deprecation.muted do Rpush::Deprecation.warn("msg") end end end
Version data entries
42 entries across 42 versions & 2 rubygems