Sha256: d6a67d2af68a987ef657bc55db2c0a19a0e47130e732d97ccd3f5ac3ff789fd1
Contents?: true
Size: 568 Bytes
Versions: 42
Compression:
Stored size: 568 Bytes
Contents
% function_string = hash[:coverage][:functions].to_s % branch_string = hash[:coverage][:branches].to_s % format_string = "%#{[function_string.length, branch_string.length].max}i" <%=@ceedling[:plugin_reportinator].generate_banner("#{BULLSEYE_ROOT_NAME.upcase}: CODE COVERAGE SUMMARY")%> % if (!hash[:coverage][:functions].nil?) FUNCTIONS: <%=sprintf(format_string, hash[:coverage][:functions])%>% % else FUNCTIONS: none % end % if (!hash[:coverage][:branches].nil?) BRANCHES: <%=sprintf(format_string, hash[:coverage][:branches])%>% % else BRANCHES: none % end
Version data entries
42 entries across 36 versions & 1 rubygems