File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -83,3 +83,7 @@ Contributing
8383------------
8484
8585If you see something missing or incorrect, a pull request is most welcome!
86+
87+ There are some sanity checks in place for testing the test suite. You can run
88+ them with ` bin/jsonschema_suite check ` . They will be run automatically by
89+ [ Travis CI] ( https://travis-ci.org/ ) as well.
Original file line number Diff line number Diff line change 2222 "description" : " ignores non-strings" ,
2323 "data" : 10 ,
2424 "valid" : true
25+ },
26+ {
27+ "description" : " two supplementary Unicode code points is long enough" ,
28+ "data" : " \uD83D\uDCA9\uD83D\uDCA9 " ,
29+ "valid" : true
2530 }
2631 ]
2732 }
Original file line number Diff line number Diff line change 2222 "description" : " ignores non-strings" ,
2323 "data" : 1 ,
2424 "valid" : true
25+ },
26+ {
27+ "description" : " one supplementary Unicode code point is not long enough" ,
28+ "data" : " \uD83D\uDCA9 " ,
29+ "valid" : false
2530 }
2631 ]
2732 }
Original file line number Diff line number Diff line change 2222 "description" : " ignores non-strings" ,
2323 "data" : 10 ,
2424 "valid" : true
25+ },
26+ {
27+ "description" : " two supplementary Unicode code points is long enough" ,
28+ "data" : " \uD83D\uDCA9\uD83D\uDCA9 " ,
29+ "valid" : true
2530 }
2631 ]
2732 }
Original file line number Diff line number Diff line change 2222 "description" : " ignores non-strings" ,
2323 "data" : 1 ,
2424 "valid" : true
25+ },
26+ {
27+ "description" : " one supplementary Unicode code point is not long enough" ,
28+ "data" : " \uD83D\uDCA9 " ,
29+ "valid" : false
2530 }
2631 ]
2732 }
You can’t perform that action at this time.
0 commit comments