diff options
author | Jon Leighton <j@jonathanleighton.com> | 2011-06-17 14:55:34 +0100 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2011-06-17 14:55:34 +0100 |
commit | e510c2c642dcec8ed656ade2b66292231c411754 (patch) | |
tree | 4f26d8d71e7789b7ef9529ee71af115e1e1aa994 /activerecord | |
parent | 248552e32432cf807634188add05489d6902242d (diff) | |
download | rails-e510c2c642dcec8ed656ade2b66292231c411754.tar.gz rails-e510c2c642dcec8ed656ade2b66292231c411754.tar.bz2 rails-e510c2c642dcec8ed656ade2b66292231c411754.zip |
Add require 'pathname' as it has not already been required in some circumstances
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/test/support/config.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/test/support/config.rb b/activerecord/test/support/config.rb index c7ac077599..6d123688a3 100644 --- a/activerecord/test/support/config.rb +++ b/activerecord/test/support/config.rb @@ -1,6 +1,7 @@ require 'yaml' require 'erubis' require 'fileutils' +require 'pathname' module ARTest class << self |