Sha256: e4f8475e17d4fabb6e853cb7d8f93fa84bfa4d3cfc8920e21c3e51042a592b54

Contents?: true

Size: 320 Bytes

Versions: 3

Compression:

Stored size: 320 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe Yardstick::Config, '#output' do
  subject { described_class.new(options).output }

  context 'when default options' do
    let(:options) { {} }

    it { should be_instance_of(Yardstick::ReportOutput) }

    its(:to_s) { should == 'measurements/report.txt' }
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
yardstick-0.9.9 spec/unit/yardstick/config/output_spec.rb
yardstick-0.9.8 spec/unit/yardstick/config/output_spec.rb
yardstick-0.9.7 spec/unit/yardstick/config/output_spec.rb