aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/dbshell/postgres_client.rb4
-rw-r--r--spec/dbshell/postgres_client_spec.rb1
2 files changed, 5 insertions, 0 deletions
diff --git a/lib/dbshell/postgres_client.rb b/lib/dbshell/postgres_client.rb
new file mode 100644
index 0000000..a22ccf7
--- /dev/null
+++ b/lib/dbshell/postgres_client.rb
@@ -0,0 +1,4 @@
+class DBShell::PostgresClient
+ def self.build_command(db_info)
+ end
+end
diff --git a/spec/dbshell/postgres_client_spec.rb b/spec/dbshell/postgres_client_spec.rb
index d1ace86..a5cbcfd 100644
--- a/spec/dbshell/postgres_client_spec.rb
+++ b/spec/dbshell/postgres_client_spec.rb
@@ -1,4 +1,5 @@
require 'minitest/autorun'
+require 'dbshell/postgres_client'
describe DBShell::PostgresClient do
describe ".build_command" do