Sha256: 9e563d0ff88467a88ccc93496bada50e0e2d79e59320673a282a54fae1f30903
Contents?: true
Size: 406 Bytes
Versions: 7
Compression:
Stored size: 406 Bytes
Contents
# frozen_string_literal: true require 'test_helper' require 'rubycritic/browser' describe RubyCritic::Browser do before do @report_path = 'tmp/rubycritic/overview.html' @browser = RubyCritic::Browser.new @report_path end describe '#open' do it 'should be open report with launch browser' do Launchy.stubs(:open).returns(true) @browser.open.must_equal true end end end
Version data entries
7 entries across 7 versions & 1 rubygems