Guest User

Untitled

a guest
Jun 18th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. >> m = Message.create
  2. => #<Message id: nil, text: nil, user_id: nil, created_at: nil, updated_at: nil, sound_file_name: nil, sound_content_type: nil, sound_file_size: nil, sound_updated_at: nil, title: nil, moderate: nil, image_file_name: nil, image_content_type: nil, image_file_size: nil>
  3. >> m.check_for_message
  4. => ["Please add content (text, mp3, image' )"]
  5. >> m.errors.full_messages
  6. => ["Tag list can't be blank", "Please add content (text, mp3, image' )"]
  7. >> m.save
  8. => false
  9. >> m.errors.full_messages
  10. => ["Tag list can't be blank"]
  11. >> m.check_for_message
  12. => ["Please add content (text, mp3, image' )"]
Add Comment
Please, Sign In to add comment