aboutsummaryrefslogtreecommitdiff
path: root/src/bin/scripts/t/030_createlang.pl
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/scripts/t/030_createlang.pl')
-rw-r--r--src/bin/scripts/t/030_createlang.pl12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/bin/scripts/t/030_createlang.pl b/src/bin/scripts/t/030_createlang.pl
index 9a87f4c89c6..292021611b6 100644
--- a/src/bin/scripts/t/030_createlang.pl
+++ b/src/bin/scripts/t/030_createlang.pl
@@ -10,9 +10,15 @@ program_options_handling_ok('createlang');
my $tempdir = tempdir;
start_test_server $tempdir;
-command_fails(['createlang', 'plpgsql', 'postgres'], 'fails if language already exists');
+command_fails(
+ [ 'createlang', 'plpgsql', 'postgres' ],
+ 'fails if language already exists');
psql 'postgres', 'DROP EXTENSION plpgsql';
-issues_sql_like(['createlang', 'plpgsql', 'postgres'], qr/statement: CREATE EXTENSION "plpgsql"/, 'SQL CREATE EXTENSION run');
+issues_sql_like(
+ [ 'createlang', 'plpgsql', 'postgres' ],
+ qr/statement: CREATE EXTENSION "plpgsql"/,
+ 'SQL CREATE EXTENSION run');
-command_like(['createlang', '--list', 'postgres'], qr/plpgsql/, 'list output');
+command_like([ 'createlang', '--list', 'postgres' ],
+ qr/plpgsql/, 'list output');