File: oracle_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 (18 lines) | stat: -rw-r--r-- 236 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// +build oracle

package testfixtures

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

func init() {
	databases = append(databases,
		databaseTest{
			"oci8",
			"ORACLE_CONN_STRING",
			"testdata/schema/oracle.sql",
			&Oracle{},
		},
	)
}