diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2024-08-22 17:11:58 +0200 |
|---|---|---|
| committer | Jeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com> | 2024-10-28 17:02:14 +0100 |
| commit | 39512e6f9b08f8057c6056473cb34bcbcf29af66 (patch) | |
| tree | b7404940e0cd34fca0d33afa34c1fa1c46d60dbc /exports/exports_test.go | |
| parent | 582c828d4473bc2a97d541b80fae19f8906e39a2 (diff) | |
Exports: Initial tests
Diffstat (limited to 'exports/exports_test.go')
| -rw-r--r-- | exports/exports_test.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/exports/exports_test.go b/exports/exports_test.go new file mode 100644 index 0000000..6077bbd --- /dev/null +++ b/exports/exports_test.go @@ -0,0 +1,13 @@ +//go:build cgotesting + +package main + +import "testing" + +func TestRegister(t *testing.T) { + testRegister(t) +} + +func TestServerList(t *testing.T) { + testServerList(t) +} |
