From 31e7fc0be23d2e94ad4a9f5e3ca723c21a3fcd68 Mon Sep 17 00:00:00 2001 From: Laurent Arnoud Date: Sat, 26 Aug 2023 17:32:44 +0200 Subject: [PATCH] Rake: add test task --- Rakefile | 1 + test/test_helper.rb | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index d3ab462..4cb75f8 100644 --- a/Rakefile +++ b/Rakefile @@ -38,3 +38,4 @@ task :cppcheck do end task default: ['test:unit', 'test:integration'] +task test: ['test:unit'] diff --git a/test/test_helper.rb b/test/test_helper.rb index a1dfbf3..dc4567e 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,6 +1,4 @@ -$VERBOSE = true require 'minitest/autorun' -require 'minitest/pride' require 'pp' require_relative '../lib/debian/apt_pkg'