We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 3715845 commit 0235fadCopy full SHA for 0235fad
tests/src/core/testqgsexpression.cpp
@@ -263,6 +263,7 @@ class TestQgsExpression: public QObject
263
QTest::newRow( "rpad truncate" ) << "rpad('Hello', 4, 'x')" << false << QVariant( "Hell" );
264
QTest::newRow( "lpad" ) << "lpad('Hello', 10, 'x')" << false << QVariant( "Helloxxxxx" );
265
QTest::newRow( "lpad truncate" ) << "rpad('Hello', 4, 'x')" << false << QVariant( "Hell" );
266
+ QTest::newRow( "title" ) << "title(' HeLlO WORLD ')" << false << QVariant( " Hello World " );
267
268
// implicit conversions
269
QTest::newRow( "implicit int->text" ) << "length(123)" << false << QVariant( 3 );
0 commit comments