cryptag / leapchat

Ephemeral, encrypted, in-browser chat rooms
https://www.leapchat.org/
Other
184 stars 32 forks source link

Unit test for minilock parse method #265

Closed jimmcgaw closed 1 year ago

jimmcgaw commented 1 year ago

Still learning the go.

I can't assert that this test is useful, being a project n00b here. :)

go test -run "^TestParseMinilockID$"

elimisteve commented 1 year ago

@jimmcgaw Looks great! FYI commands like this will also run the test:

go test -run TestParseMinilockID

or even

go test -run TestParseMinilo

(it matches by prefix, I believe).