function TextSummaryTestCase::testFirstSentenceQuestion

7.x text.test 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.

File

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

Class

TextSummaryTestCase

Code

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