diff options
author | Antonio Terceiro <terceiro@debian.org> | 2013-08-12 14:29:38 +0200 |
---|---|---|
committer | Antonio Terceiro <terceiro@softwarelivre.org> | 2013-08-13 01:38:12 +0200 |
commit | 576afd6ce5d0c15a9a14ad8b561793825e706239 (patch) | |
tree | 08cf1b07441398d4bb77ffa2e2b763f1bbe7f92c /test | |
parent | 268026c0f075ca6023e8c5e0fa1b4b3e1559ddf7 (diff) | |
download | feed2imap-576afd6ce5d0c15a9a14ad8b561793825e706239.tar.gz feed2imap-576afd6ce5d0c15a9a14ad8b561793825e706239.tar.bz2 feed2imap-576afd6ce5d0c15a9a14ad8b561793825e706239.zip |
Remove pointless unit test
Diffstat (limited to '')
-rwxr-xr-x | test/tc_mail.rb | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/test/tc_mail.rb b/test/tc_mail.rb deleted file mode 100755 index de80f9c..0000000 --- a/test/tc_mail.rb +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/ruby -w - -$:.unshift File.join(File.dirname(__FILE__), '..', 'lib') - -require 'test/unit' -require 'rmail' - -class MailTest < Test::Unit::TestCase - def test_require_rmail - # let's just test Rubymail is loaded - m = RMail::Message::new - assert_equal(m.class, RMail::Message) - end -end |