Sha256: d8ee1118c69b99b7a0ae82b7b258273b403c748cada76440f4302982cfc5b04f

Contents?: true

Size: 515 Bytes

Versions: 9

Compression:

Stored size: 515 Bytes

Contents

# encoding: utf-8
require "spec_helper"
require "metric_fu"

describe Hexx::Suit::Metrics::MetricFu::Reek, :sandbox do

  let(:config) do
    ::MetricFu::Configuration.configure_metric(:reek) do |metric|
      metric.instance_eval { @configured_run_options || {} }
    end
  end

  describe ".load" do

    subject { try_in_sandbox { described_class.load } }

    it "configures the metric from reek.yml" do
      subject
      expect(config[:config_file_pattern]).to eq "config/metrics/reek.yml"
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
hexx-suit-1.5.0-x86_64-linux spec/tests/lib/metrics/metric_fu/reek_spec.rb
hexx-suit-1.3.0-x86_64-linux spec/tests/lib/metrics/metric_fu/reek_spec.rb
hexx-suit-1.2.0 spec/tests/lib/metrics/metric_fu/reek_spec.rb
hexx-suit-1.0.0 spec/tests/lib/metrics/metric_fu/reek_spec.rb
hexx-suit-0.2.2 spec/tests/lib/metrics/metric_fu/reek_spec.rb
hexx-suit-0.2.1 spec/tests/lib/metrics/metric_fu/reek_spec.rb
hexx-suit-0.2.0 spec/tests/lib/metrics/metric_fu/reek_spec.rb
hexx-suit-0.1.0 spec/tests/lib/metrics/metric_fu/reek_spec.rb
hexx-suit-0.0.1 spec/tests/lib/metrics/metric_fu/reek_spec.rb