public
Description: Ruby WDDX gem.
Homepage: http://code.juretta.com/ruby/wddx/
Clone URL: git://github.com/juretta/wddx.git
wddx / test / wddx_test.rb
100644 11 lines (10 sloc) 0.359 kb
1
2
3
4
5
6
7
8
9
10
11
# $Id: wddx_test.rb 109 2007-04-07 15:29:03Z stefan $
require File.dirname(__FILE__) + '/test_helper.rb'
require 'test/unit'
 
if defined?(ActiveRecord)
  # Include all TestCases
  Dir[File.dirname(__FILE__) + "/tc_*"].each {|tc| require tc}
else
  # Skip Rails Tc
  Dir[File.dirname(__FILE__) + "/tc_*"].reject{|tc| tc =~ /rails/i }.each {|tc| require tc}
end