/vendor/bundle/jruby/2.1/gems/rspec-core-2.14.8/spec/autotest/discover_spec.rb
https://github.com/delowong/logstash · Ruby · 19 lines · 17 code · 2 blank · 0 comment · 0 complexity · 65e2331e387ac6bb423550bd686ed5d4 MD5 · raw file
- require "spec_helper"
- describe "autotest/discover.rb" do
- context "with ./.rspec present" do
- it "adds 'rspec2' to the list of discoveries" do
- File.stub(:exist?).with("./.rspec") { true }
- Autotest.should_receive(:add_discovery)
- load File.expand_path("../../../lib/autotest/discover.rb", __FILE__)
- end
- end
- context "with ./.rspec absent" do
- it "does not add 'rspec2' to the list of discoveries" do
- File.stub(:exist?) { false }
- Autotest.should_not_receive(:add_discovery)
- load File.expand_path("../../../lib/autotest/discover.rb", __FILE__)
- end
- end
- end