From 262ba4866902e95f8714b5c28a2b38377c005eb0 Mon Sep 17 00:00:00 2001 From: Simon Hoenscheid Date: Wed, 25 Oct 2023 13:56:24 +0200 Subject: [PATCH] postgresql_conf: add spec tests for value param --- spec/unit/type/postgresql_conf_spec.rb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/spec/unit/type/postgresql_conf_spec.rb b/spec/unit/type/postgresql_conf_spec.rb index a2d54006be..f6e972f620 100644 --- a/spec/unit/type/postgresql_conf_spec.rb +++ b/spec/unit/type/postgresql_conf_spec.rb @@ -101,6 +101,12 @@ end # string https://www.postgresql.org/docs/current/datatype-character.html describe 'validate complex string values with newvalues function' do + it 'validates log_line_prefix with value [%p] %q:%u:%d:%' do + expect { described_class.new(name: 'log_line_prefix', value: '[%p] %q:%u:%d:%x ') }.not_to raise_error + end + it 'validates log_line_prefix with value %t %q%u@%d %p %i' do + expect { described_class.new(name: 'log_line_prefix', value: '%t %q%u@%d %p %i ') }.not_to raise_error + end it 'validates log_filename with value psql_01-%Y-%m-%d.log' do expect { described_class.new(name: 'log_filename', value: 'psql_01-%Y-%m-%d.log') }.not_to raise_error end