Guest User

Untitled

a guest
Jan 23rd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. require 'spec_helper'
  2.  
  3. describe User do
  4.  
  5. it "has a name" do
  6. subject.first_name = "first"
  7. subject.last_name = "last"
  8. subject.name.should == "first last"
  9. end
  10.  
  11. end
Add Comment
Please, Sign In to add comment