diff options
-rw-r--r-- | railties/CHANGELOG | 2 | ||||
-rw-r--r-- | railties/lib/tasks/databases.rake | 22 |
2 files changed, 24 insertions, 0 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 0095bbbf89..cf0425a22e 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Added db:fixtures:identity as a way of locating what ID a foxy fixture was assigned #10332 [jbarnette] + * Generated fixtures should not specify ids since theyre expected to be foxy fixtures #10330 [jbarnette] diff --git a/railties/lib/tasks/databases.rake b/railties/lib/tasks/databases.rake index 056415c501..aa347381a6 100644 --- a/railties/lib/tasks/databases.rake +++ b/railties/lib/tasks/databases.rake @@ -134,6 +134,28 @@ namespace :db do Fixtures.create_fixtures('test/fixtures', File.basename(fixture_file, '.*')) end end + + desc "Search for a fixture given a LABEL or ID." + task :identify => :environment do + require "active_record/fixtures" + + label, id = ENV["LABEL"], ENV["ID"] + raise "LABEL or ID required" if label.blank? && id.blank? + + puts %Q(The fixture ID for "#{label}" is #{Fixtures.identify(label)}.) if label + + Dir["#{RAILS_ROOT}/test/fixtures/**/*.yml"].each do |file| + if data = YAML::load(ERB.new(IO.read(file)).result) + data.keys.each do |key| + key_id = Fixtures.identify(key) + + if key == label || key_id == id.to_i + puts "#{file}: #{key} (#{key_id})" + end + end + end + end + end end namespace :schema do |