function TextSummaryTestCase::testFirstSentenceQuestion in Drupal 7
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
- modules/
field/ modules/ text/ text.test, line 259 - Tests for text.module.
Class
Code
function testFirstSentenceQuestion() {
$text = 'A question? A sentence. Another sentence.';
$expected = 'A question? A sentence.';
$this
->callTextSummary($text, $expected, NULL, 30);
}