Skip to content

Commit

Permalink
Update README to reflect spec version v1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cbroglie committed Jun 10, 2021
1 parent 1fb86e2 commit ea8abd9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ This library is an implementation of the Mustache template language in Go.

### Mustache Spec Compliance

[mustache/spec](https://github.com/mustache/spec) contains the formal standard for Mustache, and it is included as a submodule (using v1.1.3) for testing compliance. All of the tests pass (big thanks to [kei10in](https://github.com/kei10in)), though the optional lambda support has not been implemented.
[mustache/spec](https://github.com/mustache/spec) contains the formal standard for Mustache, and it is included as a submodule (using v1.2.1) for testing compliance. All of the tests pass (big thanks to [kei10in](https://github.com/kei10in)), with the exception of the null interpolation tests added in v1.2.1. The optional inheritance and lambda support has not been implemented.

----

Expand Down
6 changes: 3 additions & 3 deletions spec_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ var disabledTests = map[string]map[string]struct{}{
"interpolation.json": {
// disabled b/c Go uses """ in place of """
// both are valid escapings, and we validate the behavior in mustache_test.go
"HTML Escaping": struct{}{},
// Newly added spec tests which aren't currently passing:
"HTML Escaping": struct{}{},
"Implicit Iterators - HTML Escaping": struct{}{},
// Not currently compliant with null interpolation tests added in v1.2.1
"Basic Null Interpolation": struct{}{},
"Triple Mustache Null Interpolation": struct{}{},
"Ampersand Null Interpolation": struct{}{},
"Implicit Iterators - HTML Escaping": struct{}{},
},
"~lambdas.json": {}, // not implemented
"~inheritance.json": {}, // not implemented
Expand Down

0 comments on commit ea8abd9

Please sign in to comment.