summaryrefslogtreecommitdiffstats
path: root/services/f3/driver/tests/init.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--services/f3/driver/tests/init.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/services/f3/driver/tests/init.go b/services/f3/driver/tests/init.go
new file mode 100644
index 0000000..d7bf23a
--- /dev/null
+++ b/services/f3/driver/tests/init.go
@@ -0,0 +1,15 @@
+// Copyright Earl Warren <contact@earl-warren.org>
+// Copyright Loïc Dachary <loic@dachary.org>
+// SPDX-License-Identifier: MIT
+
+package tests
+
+import (
+ driver_options "code.gitea.io/gitea/services/f3/driver/options"
+
+ tests_forge "code.forgejo.org/f3/gof3/v3/tree/tests/f3/forge"
+)
+
+func init() {
+ tests_forge.RegisterFactory(driver_options.Name, newForgeTest)
+}