-
-
Save hanshasselberg/2881578 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git diff | |
diff --git a/Gemfile b/Gemfile | |
index c341f77..67c6fa8 100644 | |
--- a/Gemfile | |
+++ b/Gemfile | |
@@ -1,4 +1,6 @@ | |
source :rubygems | |
+ | |
+gem 'typhoeus', path: '../typhoeus' | |
gemspec | |
group :development do | |
diff --git a/vcr.gemspec b/vcr.gemspec | |
index 75a1d2e..2bb511f 100644 | |
--- a/vcr.gemspec | |
+++ b/vcr.gemspec | |
@@ -45,7 +45,7 @@ Gem::Specification.new do |s| | |
s.add_development_dependency 'patron', '~> 0.4.15' | |
s.add_development_dependency 'em-http-request', '~> 1.0.2' | |
s.add_development_dependency 'curb', '~> 0.8.0' | |
- s.add_development_dependency 'typhoeus', '~> 0.3.3' | |
+ s.add_development_dependency 'typhoeus', '~> 0.4.0' | |
s.add_development_dependency 'yajl-ruby', '~> 1.1.0' | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ rake | |
/Users/hans/.rvm/gems/ruby-1.9.3-p125@vcr/gems/rspec-core-2.9.0/lib/rspec/core/subject.rb:76: warning: shadowing outer local variable - subject | |
Run options: include {:focus=>true} | |
All examples were filtered out; ignoring {:focus=>true} | |
2029/2029: 100% |==========================================| ETA: 00:00:00 | |
Non-VCR warnings written to tmp/warnings.txt | |
2029/2029: 100% |==========================================| Time: 00:00:11 | |
Finished in 11.06 seconds | |
2029 examples, 0 failures | |
Randomized with seed 44483 | |
Coverage report generated for Cucumber Features to /Users/hans/Projects/vcr/coverage. 0 / 1297 LOC (0.0%) covered. | |
Coverage report generated for Cucumber Features to /Users/hans/Projects/vcr/coverage. 1588 / 1614 LOC (98.39%) covered. | |
/Users/hans/.rvm/rubies/ruby-1.9.3-p125/bin/ruby -S bundle exec cucumber | |
Using the default profile... | |
1) | |
No such file or directory - spec (ChildProcess::LaunchError) | |
features/test_frameworks/rspec_macro.feature:102:in `When I run `spec spec/vcr_example_spec.rb`' | |
1157/1160: 100% |==========================================| Time: 00:02:08 | |
Failing Scenarios: | |
cucumber features/test_frameworks/rspec_macro.feature:83 # Scenario: Use `use_vcr_cassette` macro with RSpec 1 | |
240 scenarios (1 failed, 239 passed) | |
1160 steps (1 failed, 3 skipped, 1156 passed) | |
2m8.260s | |
rake aborted! | |
Command failed with status (1): [/Users/hans/.rvm/rubies/ruby-1.9.3-p125/bi...] | |
Tasks: TOP => default => cucumber | |
(See full trace by running task with --trace) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment