Sha256: 7366dde876215b9c0c22e622d852ef4275f21e61c96884f3b6f092518b6b2f6d

Contents?: true

Size: 670 Bytes

Versions: 7

Compression:

Stored size: 670 Bytes

Contents

# Encoding: utf-8

require 'spec_helper'
require 'chemistrykit/reporting/html_report_assembler'

describe ChemistryKit::Reporting::HtmlReportAssembler do

  before(:each) do
    results_folder = File.join(Dir.pwd, 'spec', 'support', 'evidence')
    output_file = File.join(Dir.pwd, 'build', 'tmp', 'final_results.html')
    @assembler = ChemistryKit::Reporting::HtmlReportAssembler.new(results_folder, output_file)
  end

  it 'should be initialized with folder path and output path' do
    @assembler.should be_an_instance_of ChemistryKit::Reporting::HtmlReportAssembler
  end

  it 'should respond to assemble' do
    @assembler.should respond_to :assemble
  end

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
chemistrykit-3.10.1 spec/unit/lib/chemistrykit/reporting/html_reporting_assembler_spec.rb
chemistrykit-3.10.0 spec/unit/lib/chemistrykit/reporting/html_reporting_assembler_spec.rb
chemistrykit-3.9.1 spec/unit/lib/chemistrykit/reporting/html_reporting_assembler_spec.rb
chemistrykit-3.9.0 spec/unit/lib/chemistrykit/reporting/html_reporting_assembler_spec.rb
chemistrykit-3.9.0.rc3 spec/unit/lib/chemistrykit/reporting/html_reporting_assembler_spec.rb
chemistrykit-3.9.0.rc2 spec/unit/lib/chemistrykit/reporting/html_reporting_assembler_spec.rb
chemistrykit-3.9.0.rc1 spec/unit/lib/chemistrykit/reporting/html_reporting_assembler_spec.rb