This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-zerotierone/ext/librethinkdbxx/test/upstream/datum/null.yaml
2017-11-02 07:05:11 -07:00

19 lines
378 B
YAML

desc: Tests of conversion to and from the RQL null type
tests:
- cd:
- r(null)
- r.expr(null)
py: r.expr(null)
ot: (null)
- cd: r.expr(null).type_of()
rb: r(null).type_of()
ot: 'NULL'
# test coercions
- cd: r.expr(null).coerce_to('string')
ot: 'null'
- cd: r.expr(null).coerce_to('null')
ot: null