Sha256: 64ec30eca41619c8a1ddb487df180ce11525300f3cf920bc85743ac03a77f4bd

Contents?: true

Size: 411 Bytes

Versions: 2

Compression:

Stored size: 411 Bytes

Contents

# encoding: UTF-8

RSpec.describe Central::Devtools::Config::Yardstick do
  let(:object) { described_class.new(Central::Devtools.root.join('config')) }

  describe '#options' do
    subject { object.options }

    specify do
      should eql(
        'threshold' => 100,
        'rules' => nil,
        'verbose' => nil,
        'path' => nil,
        'require_exact_threshold' => nil
      )
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
central-devtools-0.8.4 spec/unit/central/devtools/config/yardstick_spec.rb
central-devtools-0.8.3 spec/unit/central/devtools/config/yardstick_spec.rb