summaryrefslogtreecommitdiff
path: root/tests/guuid.go
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-10-19 17:08:39 -0300
committerEuAndreh <eu@euandre.org>2024-10-19 17:08:52 -0300
commit7da1d0b82bcf507fe111da30bf7c9033afcecdfc (patch)
tree3f64ed0d78bb93725ed5819e3493925daff8c641 /tests/guuid.go
parentAdd noop mkdeps.sh and empty deps.mk (diff)
downloaduuid-7da1d0b82bcf507fe111da30bf7c9033afcecdfc.tar.gz
uuid-7da1d0b82bcf507fe111da30bf7c9033afcecdfc.tar.xz
src/guuid.go: Remove NewBytes()
Diffstat (limited to '')
-rw-r--r--tests/guuid.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/guuid.go b/tests/guuid.go
index f4d182c..786a32c 100644
--- a/tests/guuid.go
+++ b/tests/guuid.go
@@ -167,20 +167,6 @@ func test_New() {
})
}
-func test_NewBytes() {
- testStart("NewBytes()")
-
- testing("the slice has the same length of the original array", func() {
- array := New()
- slice := NewBytes()
- assertEq(len(slice), len(array))
- })
-
- testing("we get the correct byte count", func() {
- assertEq(len(NewBytes()), ByteCount)
- })
-}
-
func test_String() {
testStart("UUID.String()")
@@ -257,7 +243,6 @@ func test_FromString() {
func MainTest() {
test_NewFrom()
test_New()
- test_NewBytes()
test_String()
test_FromString()
}