We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37b0c43 commit b369aa9Copy full SHA for b369aa9
test/integration/default/controls/command_spec.rb
@@ -9,6 +9,10 @@
9
10
# Can't use `%Q` here due to the `\`
11
describe command("su - postgres -c 'psql -p" + pg_port + %q( -qtc "\l+ db2"')) do
12
- its(:stdout) { should match(/db2.*remoteUser.*UTF8.*en_US.UTF-8.*en_US.UTF-8.*my_space/) }
+ its(:stdout) do
13
+ should match(
14
+ /db2.*remoteUser.*UTF8.*en_US.UTF-8.*en_US.UTF-8.*my_space/
15
+ )
16
+ end
17
end
18
0 commit comments