[text] Expand the text test collateral

Empty data plists, <>, are no longer invalid.
2 files changed
tree: 51915032743582de737b29fa657f52a4f3767af1
  1. ply/
  2. .travis.yml
  3. bplist.go
  4. bplist_generator.go
  5. bplist_parser.go
  6. bplist_test.go
  7. common_data_for_test.go
  8. decode.go
  9. decode_test.go
  10. doc.go
  11. encode.go
  12. encode_test.go
  13. example_custom_marshaler_test.go
  14. fuzz.go
  15. invalid_bplist_test.go
  16. invalid_text_test.go
  17. LICENSE
  18. marshal.go
  19. marshal_test.go
  20. must.go
  21. plist.go
  22. plist_types.go
  23. README.md
  24. text_generator.go
  25. text_parser.go
  26. text_tables.go
  27. text_test.go
  28. typeinfo.go
  29. unmarshal.go
  30. unmarshal_test.go
  31. util.go
  32. xml.go
  33. xml_test.go
  34. zerocopy.go
  35. zerocopy_appengine.go
README.md

plist - A pure Go property list transcoder

INSTALL

$ go get howett.net/plist

FEATURES

  • Supports encoding/decoding property lists (Apple XML, Apple Binary, OpenStep and GNUStep) from/to arbitrary Go types

USE

package main
import (
	"howett.net/plist"
	"os"
)
func main() {
	encoder := plist.NewEncoder(os.Stdout)
	encoder.Encode(map[string]string{"hello": "world"})
}