# File lib/mspec/runner/actions/tag.rb, line 99
 99:   def finish
100:     case @action
101:     when :add
102:       if @report.empty?
103:         print "\nTagAction: no specs were tagged with '#{@tag}'\n"
104:       else
105:         print "\nTagAction: specs tagged with '#{@tag}':\n\n"
106:         print report
107:       end
108:     when :del
109:       if @report.empty?
110:         print "\nTagAction: no tags '#{@tag}' were deleted\n"
111:       else
112:         print "\nTagAction: tag '#{@tag}' deleted for specs:\n\n"
113:         print report
114:       end
115:     end
116:   end