spec/yardstick_spec.rb in guard-yardstick-0.1.0 vs spec/yardstick_spec.rb in guard-yardstick-1.0.0
- old
+ new
@@ -1,5 +1,7 @@
+# frozen_string_literal: true
+
require 'spec_helper'
RSpec.describe Guard::Yardstick do
subject(:guard) { Guard::Yardstick.new(options) }
let(:options) { {} }
@@ -11,14 +13,9 @@
let(:options) { {} }
describe '[:all_on_start]' do
subject { super()[:all_on_start] }
it { should be_truthy }
- end
-
- describe '[:path]' do
- subject { super()[:path] }
- it { should eq(['lib/**/*.rb']) }
end
end
end
end