commit 7bcb85006d3b4f58cb1566331f378298b8c95fb4
parent 5606b05134d1edc997bb6d0895138d8782edd8cf
Author: Dan Callaghan <djc@djc.id.au>
Date: Mon, 23 May 2022 19:13:04 +1000
tests: delete a dead integration test
Diffstat:
2 files changed, 0 insertions(+), 19 deletions(-)
diff --git a/Manifest.txt b/Manifest.txt
@@ -130,7 +130,6 @@ test/gnupg_test_home/receiver_secring.gpg
test/gnupg_test_home/regen_keys.sh
test/gnupg_test_home/secring.gpg
test/gnupg_test_home/sup-test-2@foo.bar.asc
-test/integration/test_label_service.rb
test/integration/test_maildir.rb
test/integration/test_mbox.rb
test/integration/test_sup-add.rb
diff --git a/test/integration/test_label_service.rb b/test/integration/test_label_service.rb
@@ -1,18 +0,0 @@
-require "test_helper"
-
-require "sup/service/label_service"
-
-require "tmpdir"
-
-describe Redwood::LabelService do
- let(:tmpdir) { Dir.mktmpdir }
- after do
- require "fileutils"
- FileUtils.remove_entry_secure @tmpdir unless @tmpdir.nil?
- end
-
- describe "#add_labels" do
- # Integration tests are hard to write at this moment :(
- it "add labels to all messages matching the query"
- end
-end