summaryrefslogtreecommitdiffstatshomepage
path: root/identity/bare_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'identity/bare_test.go')
-rw-r--r--identity/bare_test.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/identity/bare_test.go b/identity/bare_test.go
new file mode 100644
index 00000000..1458107a
--- /dev/null
+++ b/identity/bare_test.go
@@ -0,0 +1,13 @@
+package identity
+
+import (
+ "testing"
+
+ "github.com/magiconair/properties/assert"
+)
+
+func TestBare_Id(t *testing.T) {
+ i := NewBare("name", "email")
+ id := i.Id()
+ assert.Equal(t, "7b226e616d65223a226e616d65222c22", id)
+}