Broaden chairman target scope event support
This commit is contained in:
parent
5c2156bcbf
commit
a63de904fa
15 changed files with 1257 additions and 30 deletions
|
|
@ -4489,11 +4489,20 @@ mod tests {
|
|||
.join("../../fixtures/runtime/packed-event-chairman-cash-overlay-fixture.json");
|
||||
let chairman_cash_save_fixture = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
|
||||
.join("../../fixtures/runtime/packed-event-chairman-cash-save-slice-fixture.json");
|
||||
let chairman_condition_true_save_fixture = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join(
|
||||
"../../fixtures/runtime/packed-event-chairman-condition-true-save-slice-fixture.json",
|
||||
);
|
||||
let chairman_human_cash_save_fixture = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join(
|
||||
"../../fixtures/runtime/packed-event-chairman-human-cash-save-slice-fixture.json",
|
||||
);
|
||||
let deactivate_chairman_overlay_fixture = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
|
||||
.join("../../fixtures/runtime/packed-event-deactivate-chairman-overlay-fixture.json");
|
||||
let deactivate_chairman_save_fixture = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join(
|
||||
"../../fixtures/runtime/packed-event-deactivate-chairman-save-slice-fixture.json",
|
||||
);
|
||||
let deactivate_chairman_ai_save_fixture = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join(
|
||||
"../../fixtures/runtime/packed-event-deactivate-chairman-ai-save-slice-fixture.json",
|
||||
);
|
||||
let deactivate_company_save_fixture = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
|
||||
.join("../../fixtures/runtime/packed-event-deactivate-company-save-slice-fixture.json");
|
||||
let track_capacity_save_fixture = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
|
||||
|
|
@ -4580,10 +4589,16 @@ mod tests {
|
|||
.expect("overlay-backed chairman-cash fixture should summarize");
|
||||
run_runtime_summarize_fixture(&chairman_cash_save_fixture)
|
||||
.expect("save-slice-backed chairman-cash fixture should summarize");
|
||||
run_runtime_summarize_fixture(&chairman_condition_true_save_fixture)
|
||||
.expect("save-slice-backed condition-true chairman fixture should summarize");
|
||||
run_runtime_summarize_fixture(&chairman_human_cash_save_fixture)
|
||||
.expect("save-slice-backed human-chairman cash fixture should summarize");
|
||||
run_runtime_summarize_fixture(&deactivate_chairman_overlay_fixture)
|
||||
.expect("overlay-backed deactivate-chairman fixture should summarize");
|
||||
run_runtime_summarize_fixture(&deactivate_chairman_save_fixture)
|
||||
.expect("save-slice-backed deactivate-chairman fixture should summarize");
|
||||
run_runtime_summarize_fixture(&deactivate_chairman_ai_save_fixture)
|
||||
.expect("save-slice-backed AI-chairman deactivate fixture should summarize");
|
||||
run_runtime_summarize_fixture(&deactivate_company_save_fixture)
|
||||
.expect("save-slice-backed deactivate-company fixture should summarize");
|
||||
run_runtime_summarize_fixture(&track_capacity_save_fixture)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue