コード例 #1
0
 public function test_custom_message()
 {
     BookPresence::$validates_presence_of[0]['message'] = 'is using a custom message.';
     $book = new BookPresence();
     $book->name = null;
     $book->save();
     $this->assert_equals('is using a custom message.', $book->errors->on('name'));
 }