1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
From: Jongmin Kim <jmkim@pukyong.ac.kr>
Date: Sat, 16 Jan 2021 09:37:49 +0100
Subject: Exclude test which uses git
Forwarded: not-needed
Last-Update: 2019-06-01
---
spec/quality_spec.rb | 2 ++
1 file changed, 2 insertions(+)
diff --git a/spec/quality_spec.rb b/spec/quality_spec.rb
index a6ceb3e..161a085 100644
--- a/spec/quality_spec.rb
+++ b/spec/quality_spec.rb
@@ -36,6 +36,7 @@ describe "The library itself" do
match(&:empty?)
end
+=begin
it "has no malformed whitespace" do
exempt = /\.gitmodules|\.marshal|fixtures|vendor|spec|ssl_certs|LICENSE|.devcontainer/
error_messages = []
@@ -60,4 +61,5 @@ describe "The library itself" do
end
expect(error_messages.compact).to be_well_formed
end
+=end
end
|