Guest User

Untitled

a guest
Jul 12th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. rake spec --trace
  2. (in /home/andy/Projects/Rails/manageit)
  3. ** Invoke spec (first_time)
  4. ** Invoke db:test:prepare (first_time)
  5. ** Invoke db:abort_if_pending_migrations (first_time)
  6. ** Invoke environment (first_time)
  7. ** Execute environment
  8. ** Execute db:abort_if_pending_migrations
  9. ** Execute db:test:prepare
  10. ** Invoke db:test:load (first_time)
  11. ** Invoke db:test:purge (first_time)
  12. ** Invoke environment
  13. ** Execute db:test:purge
  14. ** Execute db:test:load
  15. ** Invoke db:schema:load (first_time)
  16. ** Invoke environment
  17. ** Execute db:schema:load
  18. ** Execute spec
  19.  
  20.  
  21. require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
  22.  
  23. describe User do
  24. before(:each) do
  25. @valid_attributes = {
  26.  
  27. }
  28. end
  29.  
  30. it "should create a new instance given valid attributes" do
  31. User.create!(@valid_attributes)
  32. end
  33.  
  34. end
Add Comment
Please, Sign In to add comment