# frozen_string_literal: true RSpec.describe Mutant::Reporter::CLI::Printer::SubjectResult do setup_shared_context let(:reportable) { subject_a_result } describe '.call' do context 'on full coverage' do it_reports <<~'STR' subject-a - test-a STR end context 'on partial coverage' do with(:mutation_a_test_result) { { passed: true } } it_reports <<~'STR' subject-a - test-a evil:subject-a:d27d2 @@ -1 +1 @@ -true +false ----------------------- - 1 @ runtime: 1.0 - test-a Test Output: mutation a test result output ----------------------- STR end context 'without results' do with(:subject_a_result) { { mutation_results: [] } } it_reports <<~'STR' subject-a - test-a STR end end end