Sha256: 9a007d9520b989d41196215f8f56728a7a37674fe8e621741a6e3ad3d3213a15

Contents?: true

Size: 418 Bytes

Versions: 1

Compression:

Stored size: 418 Bytes

Contents

# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Guard::Yardstick do
  subject(:guard) { Guard::Yardstick.new(options) }
  let(:options) { {} }

  describe '#options' do
    subject { super().options }

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

      describe '[:all_on_start]' do
        subject { super()[:all_on_start] }
        it { should be_truthy }
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
guard-yardstick-1.0.0 spec/yardstick_spec.rb