aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorTeddy Wing2017-04-29 22:15:19 +0200
committerTeddy Wing2017-04-29 22:15:19 +0200
commit6f4057392857313355769de7fea293b5e50f0779 (patch)
tree647d609277ef2334d18847d15e8e342886431f99 /spec
parentb700c1bef89a67a64f1040fb6bb03c0320eefe91 (diff)
downloaddbshell-rails-6f4057392857313355769de7fea293b5e50f0779.tar.bz2
Update `require` paths in database client files
Change the paths in the code to conform to the new file layout introduced in b700c1bef89a67a64f1040fb6bb03c0320eefe91.
Diffstat (limited to 'spec')
-rw-r--r--spec/dbshell/client/database_spec.rb2
-rw-r--r--spec/dbshell/client/postgres_spec.rb2
-rw-r--r--spec/dbshell/client/sqlite3_spec.rb2
3 files changed, 3 insertions, 3 deletions
diff --git a/spec/dbshell/client/database_spec.rb b/spec/dbshell/client/database_spec.rb
index 1659fa3..e08d810 100644
--- a/spec/dbshell/client/database_spec.rb
+++ b/spec/dbshell/client/database_spec.rb
@@ -1,5 +1,5 @@
require 'minitest/autorun'
-require 'dbshell/database_client'
+require 'dbshell/client/database'
describe DBShell::DatabaseClient do
describe ".handler" do
diff --git a/spec/dbshell/client/postgres_spec.rb b/spec/dbshell/client/postgres_spec.rb
index 2f767f1..c267ac0 100644
--- a/spec/dbshell/client/postgres_spec.rb
+++ b/spec/dbshell/client/postgres_spec.rb
@@ -1,5 +1,5 @@
require 'minitest/autorun'
-require 'dbshell/postgres_client'
+require 'dbshell/client/postgres'
describe DBShell::PostgresClient do
describe ".build_command" do
diff --git a/spec/dbshell/client/sqlite3_spec.rb b/spec/dbshell/client/sqlite3_spec.rb
index 4922993..df42cbd 100644
--- a/spec/dbshell/client/sqlite3_spec.rb
+++ b/spec/dbshell/client/sqlite3_spec.rb
@@ -1,5 +1,5 @@
require 'minitest/autorun'
-require 'dbshell/sqlite3_client'
+require 'dbshell/client/sqlite3'
describe DBShell::Sqlite3Client do
describe ".build_command" do