faraday/Rakefile
Mattia aa4e33ff50 chore: Fix RuboCop Style/HashSyntax (#878)
* Fixes rubocop Style/HashSyntax issues.

* Fixes rubocop Style/HashSyntax issues in comments as well.
2019-02-26 12:10:35 +01:00

12 lines
182 B
Ruby

# frozen_string_literal: true
require 'rake/testtask'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
task default: :test
desc 'Run all tests'
task test: [:spec]