mirror of
https://github.com/saltstack-formulas/postgres-formula.git
synced 2025-04-17 10:10:31 +00:00
fix(rubocop): fix remaining errors manually
This commit is contained in:
parent
37b0c43839
commit
b369aa9d40
1 changed files with 5 additions and 1 deletions
|
@ -9,6 +9,10 @@ control 'Postgres command' do
|
|||
|
||||
# Can't use `%Q` here due to the `\`
|
||||
describe command("su - postgres -c 'psql -p" + pg_port + %q( -qtc "\l+ db2"')) do
|
||||
its(:stdout) { should match(/db2.*remoteUser.*UTF8.*en_US.UTF-8.*en_US.UTF-8.*my_space/) }
|
||||
its(:stdout) do
|
||||
should match(
|
||||
/db2.*remoteUser.*UTF8.*en_US.UTF-8.*en_US.UTF-8.*my_space/
|
||||
)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue