public function FeedsTamperConvertCaseTestCase::test in Feeds Tamper 6
Same name and namespace in other branches
- 7 tests/feeds_tamper_plugins.test \FeedsTamperConvertCaseTestCase::test()
File
- tests/
feeds_tamper_plugins.test, line 203 - Unit tests for feeds tamper plugins.
Class
Code
public function test() {
$this
->execute('asdfasdf', 'ASDFASDF', array(
'mode' => MB_CASE_UPPER,
));
$this
->execute('AsdFasdf', 'asdfasdf', array(
'mode' => MB_CASE_LOWER,
));
$this
->execute('asdfasdf', 'Asdfasdf', array(
'mode' => MB_CASE_TITLE,
));
}