I wonder if there\'s a way to load and/or use fixture in rails console. Actually, I\'d like to create a user from my fixture users.yml to do some testing without ha
users.yml
You can load fixtures into your development database too:
$ rake db:fixtures:load $ rails c > require 'active_record/fixtures' > john = User.find ActiveRecord::FixtureSet.identify('john')