Sha256: 2993f9a370d99ccb97b56e47ec64393cd8e785dab04844b7859f665201c3a6ff
Contents?: true
Size: 1.39 KB
Versions: 8
Compression:
Stored size: 1.39 KB
Contents
require File.join(File.dirname(__FILE__), '..', '..', 'spec_helper') describe Slather::CoverageService::LlvmCovOutput do let(:fixtures_project) do proj = Slather::Project.open(FIXTURES_PROJECT_PATH) proj.build_directory = TEMP_DERIVED_DATA_PATH proj.binary_basename = ["fixturesTests", "libfixturesTwo"] proj.input_format = "profdata" proj.coverage_service = "llvm_cov" proj.configure proj end describe '#coverage_file_class' do it "should return ProfdataCoverageFile" do expect(fixtures_project.send(:coverage_file_class)).to eq(Slather::ProfdataCoverageFile) end end describe '#post' do it "should create an llvm-cov report spanning all coverage files" do fixtures_project.post output_llcov = File.read('report.llcov') fixture_llcov = File.read(FIXTURES_LLCOV_PATH) output_llcov, fixture_llcov = [output_llcov, fixture_llcov].map do |llcov_doc| llcov_doc.gsub(/^\/.+:$/, '') end expect(output_llcov).to eq(fixture_llcov) FileUtils.rm('report.llcov') end it "should create an llvm-cov report in the given output directory" do fixtures_project.output_directory = "./output" fixtures_project.post filepath = "#{fixtures_project.output_directory}/report.llcov" expect(File.exist?(filepath)).to be_truthy FileUtils.rm_rf(fixtures_project.output_directory) end end end
Version data entries
8 entries across 8 versions & 1 rubygems