diff options
Diffstat (limited to 'node_modules/sax/test/trailing-attribute-no-value.js')
-rw-r--r-- | node_modules/sax/test/trailing-attribute-no-value.js | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/node_modules/sax/test/trailing-attribute-no-value.js b/node_modules/sax/test/trailing-attribute-no-value.js deleted file mode 100644 index 222837f8f..000000000 --- a/node_modules/sax/test/trailing-attribute-no-value.js +++ /dev/null @@ -1,10 +0,0 @@ - -require(__dirname).test({ - xml : - "<root attrib>", - expect : [ - ["attribute", {name:"ATTRIB", value:"attrib"}], - ["opentag", {name:"ROOT", attributes:{"ATTRIB":"attrib"}, isSelfClosing: false}] - ], - opt : { trim : true } -}); |