aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/gopkg.in/testfixtures.v2/deprecated.go
diff options
context:
space:
mode:
authorMura Li <typeless@users.noreply.github.com>2018-10-03 03:20:02 +0800
committertechknowlogick <hello@techknowlogick.com>2018-10-02 15:20:02 -0400
commitdba955be7c92c1c8b967add8a6d362ea7ec2da67 (patch)
tree221deeaf67f594fe67db7e2124a75a8d16d30d31 /vendor/gopkg.in/testfixtures.v2/deprecated.go
parentb8d048fa0d2cdd0781051990d34cb3681a8ae114 (diff)
downloadgitea-dba955be7c92c1c8b967add8a6d362ea7ec2da67.tar.gz
gitea-dba955be7c92c1c8b967add8a6d362ea7ec2da67.zip
Upgrade gopkg.in/testfixtures.v2 (#4999)
Diffstat (limited to 'vendor/gopkg.in/testfixtures.v2/deprecated.go')
-rw-r--r--vendor/gopkg.in/testfixtures.v2/deprecated.go28
1 files changed, 22 insertions, 6 deletions
diff --git a/vendor/gopkg.in/testfixtures.v2/deprecated.go b/vendor/gopkg.in/testfixtures.v2/deprecated.go
index b83eeef436..16e0969e33 100644
--- a/vendor/gopkg.in/testfixtures.v2/deprecated.go
+++ b/vendor/gopkg.in/testfixtures.v2/deprecated.go
@@ -5,22 +5,38 @@ import (
)
type (
- DataBaseHelper Helper // Deprecated: Use Helper instead
+ // DataBaseHelper is the helper interface
+ // Deprecated: Use Helper instead
+ DataBaseHelper Helper
- PostgreSQLHelper struct { // Deprecated: Use PostgreSQL{} instead
+ // PostgreSQLHelper is the PostgreSQL helper
+ // Deprecated: Use PostgreSQL{} instead
+ PostgreSQLHelper struct {
PostgreSQL
UseAlterConstraint bool
}
- MySQLHelper struct { // Deprecated: Use MySQL{} instead
+
+ // MySQLHelper is the MySQL helper
+ // Deprecated: Use MySQL{} instead
+ MySQLHelper struct {
MySQL
}
- SQLiteHelper struct { // Deprecated: Use SQLite{} instead
+
+ // SQLiteHelper is the SQLite helper
+ // Deprecated: Use SQLite{} instead
+ SQLiteHelper struct {
SQLite
}
- SQLServerHelper struct { // Deprecated: Use SQLServer{} instead
+
+ // SQLServerHelper is the SQLServer helper
+ // Deprecated: Use SQLServer{} instead
+ SQLServerHelper struct {
SQLServer
}
- OracleHelper struct { // Deprecated: Use Oracle{} instead
+
+ // OracleHelper is the Oracle helper
+ // Deprecated: Use Oracle{} instead
+ OracleHelper struct {
Oracle
}
)