1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
# This file was generated by the `rspec --init` command. Conventionally, all
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
# Require this file using `require "spec_helper.rb"` to ensure that it is only
# loaded once.
#
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
RSpec.configure do |config|
config.run_all_when_everything_filtered = true
config.filter_run :focus
config.mock_with :rspec do |mocks|
mocks.syntax = :should
end
config.expect_with :rspec do |expectations|
expectations.syntax = [:should, :expect]
end
end
require 'webmock/rspec'
require 'gist'
|