| commit | b06b43f4b5a1e9b8508aa7940572a4c87b700a04 | [log] [tgz] |
|---|---|---|
| author | Dustin L. Howett <[email protected]> | Thu Dec 26 21:18:13 2024 |
| committer | Dustin L. Howett <[email protected]> | Thu Dec 26 21:18:15 2024 |
| tree | 6196a37904b44cb98f34706cc67c0c62e471d169 | |
| parent | 2e1fca7b67ab80a46099f6f0226804fa4e7ca784 [diff] |
test: add support for non-strict-equality decode tests Future work will enable us to decode structures containing deeply nested pointers, which will fail strict equality checks.
$ go get howett.net/plist
package main
import (
"howett.net/plist"
"os"
)
func main() {
encoder := plist.NewEncoder(os.Stdout)
encoder.Encode(map[string]string{"hello": "world"})
}