diff options
author | Antonio Terceiro <terceiro@softwarelivre.org> | 2015-01-13 17:11:24 -0200 |
---|---|---|
committer | Antonio Terceiro <terceiro@softwarelivre.org> | 2015-01-13 17:11:24 -0200 |
commit | 000641ea5795c3886bba6d6deeee3eb00ac51684 (patch) | |
tree | abbd9841635666a4b17864fc990b50ac5f1202d0 | |
parent | e5e15ef3b1f5b95836fb31d94ba290b88e629e51 (diff) | |
download | feed2imap-000641ea5795c3886bba6d6deeee3eb00ac51684.tar.gz feed2imap-000641ea5795c3886bba6d6deeee3eb00ac51684.tar.bz2 feed2imap-000641ea5795c3886bba6d6deeee3eb00ac51684.zip |
Rakefile: run tests in verbose mode
Diffstat (limited to '')
-rw-r--r-- | Rakefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -17,7 +17,8 @@ Find.find('bin/', 'lib/', 'test/', 'data/') do |f| end end Rake::TestTask.new do |t| - t.libs << "libs/feed2imap" + t.verbose = true + t.libs << "libs/feed2imap" t.libs << "test" t.test_files = FileList['test/tc_*.rb'] - ['test/tc_httpfetcher.rb'] end |