We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8b49b58 + d1c2144 commit 4dbf624Copy full SHA for 4dbf624
spec/unit/puppet/provider/postgresql_psql/ruby_spec.rb
@@ -70,7 +70,7 @@
70
describe "with port string" do
71
let(:attributes) do { :port => '5555' } end
72
73
- it "executes with the given psql_path on the given DB" do
+ it "executes with the given port" do
74
expect(provider).to receive(:run_command).with(["psql",
75
"-p", "5555",
76
"-t", "-c", "SELECT something"],
@@ -82,7 +82,7 @@
82
describe "with host string" do
83
let(:attributes) do { :host => '127.0.0.1' } end
84
85
+ it "executes with the given host" do
86
87
"-h", "127.0.0.1",
88
"-t", "-c",
0 commit comments