mirror of
https://github.com/Luzifer/duplicity-backup.git
synced 2024-11-08 15:10:06 +00:00
14 lines
207 B
Go
14 lines
207 B
Go
|
package main_test
|
||
|
|
||
|
import (
|
||
|
. "github.com/onsi/ginkgo"
|
||
|
. "github.com/onsi/gomega"
|
||
|
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestDuplicityBackup(t *testing.T) {
|
||
|
RegisterFailHandler(Fail)
|
||
|
RunSpecs(t, "DuplicityBackup Suite")
|
||
|
}
|