|
151 | 151 | var pattern1 = createFakeListPattern({
|
152 | 152 | "template": "{{#listItems.one}}{{> 00-test/00-foo.mustache }}{{/listItems.one}}",
|
153 | 153 | "extendedTemplate" : "{{#listItems.one}}{{> 00-test/00-foo.mustache }}{{/listItems.one}}",
|
154 |
| - "key": "test-patternName1" |
| 154 | + "patternPartial": "test-patternName1", |
| 155 | + "relPath": "00-test/02-patternName1.mustache" |
155 | 156 | });
|
156 | 157 |
|
157 | 158 | var pattern2 = createFakeListPattern({
|
158 | 159 | "template": "{{#listItems.two}}{{> 00-test/00-bar.mustache }}{{/listItems.two}}",
|
159 | 160 | "extendedTemplate" : "{{#listItems.two}}{{> 00-test/00-bar.mustache }}{{/listItems.two}}",
|
160 |
| - "key": "test-patternName2" |
| 161 | + "patternPartial": "test-patternName2", |
| 162 | + "relPath": "00-test/03-patternName2.mustache" |
161 | 163 | });
|
162 | 164 |
|
163 | 165 | var patternlab = createFakePatternLab({
|
164 | 166 | "patterns": [
|
165 | 167 | Pattern.create('00-test/00-foo.mustache', null, {
|
166 | 168 | "template": "{{ title }}",
|
167 |
| - "extendedTemplate": "{{ title }}" |
| 169 | + "extendedTemplate": "{{ title }}", |
| 170 | + "relPath": "00-test/00-foo.mustache" |
168 | 171 | }),
|
169 | 172 | Pattern.create('00-test/00-bar.mustache', null, {
|
170 | 173 | "template": "{{ title }}",
|
171 |
| - "extendedTemplate": "{{ title }}" |
| 174 | + "extendedTemplate": "{{ title }}", |
| 175 | + "relPath": "00-test/00-bar.mustache" |
172 | 176 | })
|
173 | 177 | ]
|
174 | 178 | });
|
|
0 commit comments