Sha256: 3a0d073bd193e6cb4ee5a0406532f30486ca8f511fe17f88f5973b25af846277

Contents?: true

Size: 260 Bytes

Versions: 3

Compression:

Stored size: 260 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe Yardstick::Config, '#threshold=' do
  subject { described_class.new }

  let(:new_threshold) { 34 }

  before do
    subject.threshold = new_threshold
  end

  its(:threshold) { should be(new_threshold) }
end

Version data entries

3 entries across 3 versions & 1 rubygems

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