Guest User

Untitled

a guest
Jan 23rd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1.  
  2. require 'spec_helper'
  3.  
  4. t = Time.now
  5. User.new.attributes
  6. puts Time.now - t
  7.  
  8. describe User do
  9.  
  10. it "has a name" do
  11. subject.first_name = "first"
  12. subject.last_name = "last"
  13. subject.name.should == "first last"
  14. end
  15.  
  16. it "has a name" do
  17. subject.first_name = "first"
  18. subject.last_name = "last"
  19. subject.name.should == "first last"
  20. end
  21.  
  22. end
Add Comment
Please, Sign In to add comment