File: sample.config.yml

package info (click to toggle)
ruby-database-cleaner 1.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 756 kB
  • sloc: ruby: 4,852; makefile: 10; sh: 4
file content (32 lines) | stat: -rw-r--r-- 516 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
27
28
29
30
31
32
mysql:
  adapter: mysql
  database: database_cleaner_test
  username: root
  password:
  host: 127.0.0.1
  port: 3306
  encoding: utf8

mysql2:
  adapter: mysql2
  database: database_cleaner_test
  username: root
  password:
  host: 127.0.0.1
  port: 3306
  encoding: utf8

postgres:
  adapter: postgresql
  database: database_cleaner_test
  username: postgres
  password:
  host: 127.0.0.1
  encoding: unicode
  template: template0

sqlite3:
  adapter: sqlite3
  database: db/test.sqlite3
  pool: 5
  timeout: 5000