public function test_gh245_dirty_attribute_should_not_raise_php_notice_if_not_dirty()
 {
     $event = new Event(array('title' => "Fun"));
     $this->assert_false($event->attribute_is_dirty('description'));
     $this->assert_true($event->attribute_is_dirty('title'));
 }