From 2a01c4c885d12280ffbd3ea686118b778e3bd400 Mon Sep 17 00:00:00 2001 From: Jarek Radosz Date: Wed, 3 Mar 2021 13:02:27 +0100 Subject: [PATCH] DEV: Add `rake test` task --- Rakefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Rakefile b/Rakefile index d2e1df2..c795761 100644 --- a/Rakefile +++ b/Rakefile @@ -14,6 +14,7 @@ rescue Bundler::BundlerError => error end RSpec::Core::RakeTask.new(:spec) +task test: :spec desc "Default: run tests" task default: [ :spec ]