Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. expect{
  2. post :create, :name=> 'abc'
  3. }.to change(Event.count).from(0).to(1)
  4.  
  5. TypeError: nil is not a symbol
  6.  
  7. expect{
  8. post :create, :name=> 'abc'
  9. }.to change{Event.count}.from(0).to(1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement