Guest User

Untitled

a guest
Mar 14th, 2018
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. # ...
  2.  
  3. context "for a given user" do
  4. setup do
  5. topic.user = User.create(:name => "acme", :email => "a@b.com",
  6. :password => "h3ll0", :password_confirmation => "h3ll0")
  7. topic.description = "Foo Bar"
  8. topic.name = "foo_bar"
  9. topic.save!
  10. topic
  11. end
  12.  
  13. topic.validates_uniqueness_of :name
  14.  
  15. end.delete_all(User)
  16.  
  17. # ...
Add Comment
Please, Sign In to add comment