Revision b50ceaa2
Added by Thomas McKay over 6 years ago
Gemfile | ||
---|---|---|
4 | 4 |
|
5 | 5 |
group :test do |
6 | 6 |
gem 'rake', '~> 10.1.0' |
7 |
gem 'vcr' |
|
8 |
gem 'webmock', '< 2.0.0' # https://github.com/vcr/vcr/issues/570 |
|
7 | 9 |
gem 'thor' |
8 | 10 |
gem 'minitest', '4.7.4' |
9 | 11 |
gem 'minitest-spec-context' |
... | ... | |
11 | 13 |
gem 'mocha' |
12 | 14 |
gem 'ci_reporter', '>= 1.6.3', "< 2.0.0", :require => false |
13 | 15 |
gem 'rubocop-checkstyle_formatter' |
16 |
gem 'coveralls' |
|
14 | 17 |
end |
15 | 18 |
|
16 | 19 |
# load local gemfile |
Also available in: Unified diff
fixes #15916 - infrastructure to switch tests to use vcr
Switching to VCR will allow both running against a live server (as the existing tests do now) or to run in pre-recorded mode.
Setting initial code coverage to 26%
Added default rake task to run rubocop and test