diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2016-07-04 15:23:52 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-04 15:23:52 -0300 |
commit | 2a8dbfe8ccc75949088e761620d09b589e953a88 (patch) | |
tree | 1811b6ba0f9759b58050fdde1af37ea74ced7537 /activesupport | |
parent | 9552f8b457a674c66f99d6cbef244fbb7de6ba34 (diff) | |
parent | a69a5a414755c7f7df3a3a1d3e58e3d47e66018c (diff) | |
download | rails-2a8dbfe8ccc75949088e761620d09b589e953a88.tar.gz rails-2a8dbfe8ccc75949088e761620d09b589e953a88.tar.bz2 rails-2a8dbfe8ccc75949088e761620d09b589e953a88.zip |
Merge pull request #25679 from voxik/file-fixtures-test-require-pathname
Pathname might not be always initialized.
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/test/testing/file_fixtures_test.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/test/testing/file_fixtures_test.rb b/activesupport/test/testing/file_fixtures_test.rb index 3587c1a4d1..d98987fb8d 100644 --- a/activesupport/test/testing/file_fixtures_test.rb +++ b/activesupport/test/testing/file_fixtures_test.rb @@ -1,5 +1,7 @@ require 'abstract_unit' +require 'pathname' + class FileFixturesTest < ActiveSupport::TestCase self.file_fixture_path = File.expand_path("../../file_fixtures", __FILE__) |