File: sqlite_test.go

package info (click to toggle)
golang-gopkg-testfixtures.v2 2.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 220 kB
  • sloc: sql: 235; makefile: 3
file content (16 lines) | stat: -rw-r--r-- 232 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// +build sqlite

package testfixtures

import (
	_ "github.com/mattn/go-sqlite3"
)

func init() {
	databases = append(databases, databaseTest{
		"sqlite3",
		"SQLITE_CONN_STRING",
		"testdata/schema/sqlite.sql",
		&SQLite{},
	})
}