Skip to content

Instantly share code, notes, and snippets.

@radar
Forked from anonymous/gist:33866
Created December 9, 2008 10:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radar/33867 to your computer and use it in GitHub Desktop.
Save radar/33867 to your computer and use it in GitHub Desktop.
desc 'Create YAML test fixtures from data in the existing database.'
task(:extract_fixtures => :environment) do
sql = "SELECT * FROM %s ORDER BY desc(id) LIMIT 10"
skip_tables = ["schema_info", "badges", "badge_groups", "html_links", "hero_plus_status_updates"]
(ActiveRecord::Base.connection.tables - skip_tables).each do |table_name|
i = "000"
File.open("#{RAILS_ROOT}/test/fixtures/#{table_name}.yml", 'w') do |file|
data = ActiveRecord::Base.connection.select_all(sql % table_name)
file.write data.inject({}) { |hash, record|
hash["#{table_name}_#{i.succ!}"] = record
hash
}.to_yaml
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment