Created
November 7, 2009 19:16
-
-
Save mrichman/228846 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ rake db:seed --trace | |
| (in /Users/mark/Sites/rails/rails_sample_app) | |
| ** Invoke db:seed (first_time) | |
| ** Invoke environment (first_time) | |
| ** Execute environment | |
| ** Execute db:seed | |
| Loaded suite /usr/bin/rake | |
| Started | |
| Finished in 5.6e-05 seconds. | |
| 0 tests, 0 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications | |
| 0% passed | |
| User.create( | |
| :login => 'admin', | |
| :first_name => 'Test', | |
| :last_name => 'User', | |
| :email => '[email protected]', | |
| :address1 => '123 Main St.', | |
| :city => 'Anytown', | |
| :state => 'XY', | |
| :postal_code => '12345', | |
| :country_code => 'US', | |
| :password => 'admin' | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment