diff options
| author | Teddy Wing | 2017-04-29 22:30:06 +0200 | 
|---|---|---|
| committer | Teddy Wing | 2017-04-29 22:30:06 +0200 | 
| commit | ff2d18994bc5d885362b077fd6c70410b33a9605 (patch) | |
| tree | 127120d02554ab7c051afab446cf2a536f0dbce0 /spec | |
| parent | 46b019abd520870ab159b60c03c45675f64dd88a (diff) | |
| download | dbshell-rails-ff2d18994bc5d885362b077fd6c70410b33a9605.tar.bz2 | |
Move `DBShell::InvalidDatabaseAdapter` to the `Client` module
Now that we have a `Client` module
(46b019abd520870ab159b60c03c45675f64dd88a), it makes so much more sense
to put this error class inside it.
Diffstat (limited to 'spec')
| -rw-r--r-- | spec/dbshell/client/database_spec.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/spec/dbshell/client/database_spec.rb b/spec/dbshell/client/database_spec.rb index 5fe5597..1328cf7 100644 --- a/spec/dbshell/client/database_spec.rb +++ b/spec/dbshell/client/database_spec.rb @@ -20,7 +20,7 @@ describe DBShell::Client::Database do          DBShell::Client::Database.handler({            'adapter' => 'sybil_system'          }) -      end.must_raise(DBShell::InvalidDatabaseAdapter) +      end.must_raise(DBShell::Client::InvalidDatabaseAdapter)      end    end  end | 
