File: sqlite3.rb

package info (click to toggle)
ruby-shoulda-matchers 7.0.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,652 kB
  • sloc: ruby: 34,046; sh: 280; makefile: 9
file content (26 lines) | stat: -rw-r--r-- 402 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
module Tests
  module DatabaseAdapters
    class SQLite3
      def self.name
        :sqlite3
      end

      def initialize(_database)
      end

      def adapter
        self.class.name
      end

      def database
        'db/db.sqlite3'
      end

      def require_dependencies
        require 'sqlite3'
      end
    end

    DatabaseConfigurationRegistry.instance.register(SQLite3)
  end
end