From 7247a25a96cc923424062189342dcef7b53665c7 Mon Sep 17 00:00:00 2001 From: Washington Botelho Date: Wed, 14 Feb 2018 15:02:44 -0200 Subject: [PATCH] up: makes spec for with and without config --- Rakefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Rakefile b/Rakefile index c3c8075..d180f88 100644 --- a/Rakefile +++ b/Rakefile @@ -23,3 +23,11 @@ task :spec_config do FileUtils.rm_rf(directory_config) unless unsafe_path end + +desc 'Runs tests with and without config enabled' +task :spec do + Rake::Task['spec'].invoke + Rake::Task['spec_config'].invoke + + puts "Spec with and without config enabled executed." +end