function TextSummaryTestCase::testFirstSentenceQuestion

Tests an edge case where the first sentence is a question and subsequent sentences are not. This edge case is documented at http://drupal.org/node/180425.

Archivo

drupal-7.x/modules/field/modules/text/text.test, line 259
Tests for text.module.

Class

TextSummaryTestCase

Código

function testFirstSentenceQuestion() {
  $text = 'A question? A sentence. Another sentence.';
  $expected = 'A question? A sentence.';
  $this->callTextSummary($text, $expected, NULL, 30);
}