From 91247b61672c3d136682870558e5068f4c7195f0 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 27 Feb 2006 05:14:57 +0000 Subject: Added that fixtures to placed in subdirectories of the main fixture files are also loaded (closes #3937) [dblack@wobblini.net] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3683 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/lib/active_record/fixtures.rb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'activerecord/lib/active_record') diff --git a/activerecord/lib/active_record/fixtures.rb b/activerecord/lib/active_record/fixtures.rb index 3d2fa3ac71..3254781764 100755 --- a/activerecord/lib/active_record/fixtures.rb +++ b/activerecord/lib/active_record/fixtures.rb @@ -286,11 +286,18 @@ class Fixtures < YAML::Omap end private + def read_fixture_files if File.file?(yaml_file_path) # YAML fixtures begin - if yaml = YAML::load(erb_render(IO.read(yaml_file_path))) + yaml_string = "" + Dir["#{@fixture_path}/**/*"].select {|f| test(?f,f) }.each do |subfixture_path| + yaml_string << IO.read(subfixture_path) + end + yaml_string << IO.read(yaml_file_path) + + if yaml = YAML::load(erb_render(yaml_string)) yaml = yaml.value if yaml.respond_to?(:type_id) and yaml.respond_to?(:value) yaml.each do |name, data| self[name] = Fixture.new(data, @class_name) -- cgit v1.2.3