spec/reek/cli/html_report_spec.rb in reek-2.1.0 vs spec/reek/cli/html_report_spec.rb in reek-2.2.0

- old
+ new

@@ -1,13 +1,13 @@ require_relative '../../spec_helper' -require_relative '../../../lib/reek/examiner' +require_relative '../../../lib/reek/core/examiner' require_relative '../../../lib/reek/cli/report/report' -describe Reek::CLI::Report::HTMLReport do +RSpec.describe Reek::CLI::Report::HTMLReport do let(:instance) { Reek::CLI::Report::HTMLReport.new } context 'with an empty source' do - let(:examiner) { Reek::Examiner.new('') } + let(:examiner) { Reek::Core::Examiner.new('') } before do instance.add_examiner examiner end