We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75af256 commit 32ad486Copy full SHA for 32ad486
1 file changed
crates/djls-corpus/src/profiles.rs
@@ -264,6 +264,24 @@ mod tests {
264
gh401.context_discovery_globs,
265
vec!["projects/*/settings/dev.py"]
266
);
267
+ let site1 = gh401
268
+ .contexts
269
+ .iter()
270
+ .find(|context| context.label == "site1-dev")
271
+ .unwrap();
272
+ let site2 = gh401
273
274
275
+ .find(|context| context.label == "site2-dev")
276
277
+ assert_eq!(
278
+ site1.expected.local_apps,
279
+ vec!["clientname.app1", "clientname.app2"]
280
+ );
281
282
+ site2.expected.local_apps,
283
+ vec!["clientname.app2", "clientname.app3"]
284
285
assert_eq!(
286
gh401.expected_union.local_apps,
287
vec!["clientname.app1", "clientname.app2", "clientname.app3"]
0 commit comments