public
Fork of mojombo/chronic
Description: Chronic is a pure Ruby natural language date parser.
Homepage: http://chronic.rubyforge.org
Clone URL: git://github.com/technoweenie/chronic.git
chronic / test / suite.rb
100644 9 lines (7 sloc) 0.208 kb
1
2
3
4
5
6
7
8
9
require 'test/unit'
 
tests = Dir["#{File.dirname(__FILE__)}/test_*.rb"]
tests.delete_if { |o| o =~ /test_parsing/ }
tests.each do |file|
  require file
end
 
require File.dirname(__FILE__) + '/test_parsing.rb'