2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-11 05:12:21 +00:00
restic/internal/restic/id_int_test.go

17 lines
319 B
Go
Raw Normal View History

2016-08-31 17:18:51 +00:00
package restic
import "testing"
func TestIDMethods(t *testing.T) {
var id ID
if id.Str() != "[null]" {
t.Errorf("ID.Str() returned wrong value, want %v, got %v", "[null]", id.Str())
}
var pid *ID
if pid.Str() != "[nil]" {
t.Errorf("ID.Str() returned wrong value, want %v, got %v", "[nil]", pid.Str())
}
}