@@ -124,27 +124,33 @@ describe('PostHTML-Parser test', function() {
124
124
} ) ;
125
125
126
126
it ( 'should be parse directive' , function ( ) {
127
- var customDirectives = { directives : [
128
- { name : '?php' , start : '<' , end : '>' }
129
- ] } ;
127
+ var options = {
128
+ directives : [
129
+ { name : '?php' , start : '<' , end : '>' }
130
+ ]
131
+ } ;
130
132
131
- expect ( parser ( '<?php echo "Hello word"; ?>' , customDirectives ) ) . to . eql ( [ '<?php echo "Hello word"; ?>' ] ) ;
133
+ expect ( parser ( '<?php echo "Hello word"; ?>' , options ) ) . to . eql ( [ '<?php echo "Hello word"; ?>' ] ) ;
132
134
} ) ;
133
135
134
136
it ( 'should be parse regular expression directive' , function ( ) {
135
- var customDirectives = { directives : [
136
- { name : / \? ( p h p | = ) .* / , start : '<' , end : '>' }
137
- ] } ;
137
+ var options = {
138
+ directives : [
139
+ { name : / \? ( p h p | = ) .* / , start : '<' , end : '>' }
140
+ ]
141
+ } ;
138
142
139
- expect ( parser ( '<?php echo "Hello word"; ?>' , customDirectives ) ) . to . eql ( [ '<?php echo "Hello word"; ?>' ] ) ;
140
- expect ( parser ( '<?="Hello word"?>' , customDirectives ) ) . to . eql ( [ '<?="Hello word"?>' ] ) ;
143
+ expect ( parser ( '<?php echo "Hello word"; ?>' , options ) ) . to . eql ( [ '<?php echo "Hello word"; ?>' ] ) ;
144
+ expect ( parser ( '<?="Hello word"?>' , options ) ) . to . eql ( [ '<?="Hello word"?>' ] ) ;
141
145
} ) ;
142
146
143
147
it ( 'should be parse directives and tag' , function ( ) {
144
- var customDirectives = { directives : [
145
- { name : '!doctype' , start : '<' , end : '>' } ,
146
- { name : '?php' , start : '<' , end : '>' }
147
- ] } ;
148
+ var options = {
149
+ directives : [
150
+ { name : '!doctype' , start : '<' , end : '>' } ,
151
+ { name : '?php' , start : '<' , end : '>' }
152
+ ]
153
+ } ;
148
154
149
155
var html = '<!doctype html><html><?php echo \"Hello word\"; ?></html>' ;
150
156
var tree = [
@@ -155,7 +161,7 @@ describe('PostHTML-Parser test', function() {
155
161
}
156
162
] ;
157
163
158
- expect ( parser ( html , customDirectives ) ) . to . eql ( tree ) ;
164
+ expect ( parser ( html , options ) ) . to . eql ( tree ) ;
159
165
} ) ;
160
166
161
167
it ( 'should be parse tag' , function ( ) {
0 commit comments