Rakefile in ankusa-0.1.0 vs Rakefile in ankusa-0.1.1

- old
+ new

@@ -49,5 +49,15 @@ Rake::TestTask.new("test_mongo_db") { |t| t.libs += ["lib", "."] t.test_files = FileList['test/hasher_test.rb', 'test/mongo_db_classifier_test.rb'] t.verbose = true } + +desc "Run all unit tests in Travis-CI environment" +Rake::TestTask.new("test_travis_ci") { |t| + t.libs += ["lib", "."] + t.test_files = FileList['test/hasher_test.rb', + 'test/memory_classifier_test.rb', + 'test/file_system_classifier_test.rb', + 'test/mongo_db_classifier_test.rb'] + t.verbose = true +}