Skip to content

Commit f6b9005

Browse files
astefanoclaude
andcommitted
upd comments
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 6270637 commit f6b9005

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

tests/regression_test.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -458,13 +458,13 @@ mod quantitative_tests {
458458
}
459459

460460
// ===========================================================================
461-
// Category 4: Requirement-Derived Tests (from PDF)
461+
// Category 4: Requirement-Derived Tests (from "Structure for Verif Projects" doc)
462462
// ===========================================================================
463463

464464
mod requirement_tests {
465465
use super::*;
466466

467-
/// PDF p.8: "code-name will always take precedence" over code-path/code-line.
467+
/// "Structure for Verif Projects" doc p.8: "code-name will always take precedence" over code-path/code-line.
468468
#[test]
469469
fn test_code_name_takes_precedence_over_code_line() {
470470
let temp_dir = setup_test_project();
@@ -503,7 +503,7 @@ code-line: 25
503503
);
504504
}
505505

506-
/// PDF p.8: ".md files will not be overwritten during specification/verification"
506+
/// "Structure for Verif Projects" doc p.8: ".md files will not be overwritten during specification/verification"
507507
#[test]
508508
fn test_md_files_unchanged_during_specify() {
509509
let temp_dir = setup_test_project();
@@ -518,7 +518,7 @@ code-line: 25
518518
assert_eq!(before, after, ".md files should not change during specify");
519519
}
520520

521-
/// PDF p.8: same requirement for verify
521+
/// "Structure for Verif Projects" doc p.8: same requirement for verify
522522
#[test]
523523
fn test_md_files_unchanged_during_verify() {
524524
let temp_dir = setup_test_project();
@@ -533,7 +533,7 @@ code-line: 25
533533
assert_eq!(before, after, ".md files should not change during verify");
534534
}
535535

536-
/// PDF p.9: "For the MVP, the spec cert will just contain a timestamp"
536+
/// "Structure for Verif Projects" doc p.9: "For the MVP, the spec cert will just contain a timestamp"
537537
#[test]
538538
fn test_cert_contains_timestamp() {
539539
let temp_dir = setup_test_project_with_config("config_auto_validate.json");
@@ -575,7 +575,7 @@ code-line: 25
575575
}
576576
}
577577

578-
/// PDF p.7: "dependencies can only be code dependencies (comes from atomization)"
578+
/// "Structure for Verif Projects" doc p.7: "dependencies can only be code dependencies (comes from atomization)"
579579
#[test]
580580
fn test_dependencies_populated_from_atoms() {
581581
let temp_dir = setup_test_project();
@@ -617,7 +617,7 @@ code-line: 25
617617
);
618618
}
619619

620-
/// PDF p.14: atoms have code-module, code-path, code-text, dependencies
620+
/// "Structure for Verif Projects" doc p.14: atoms have code-module, code-path, code-text, dependencies
621621
#[test]
622622
fn test_enriched_stubs_have_required_fields() {
623623
let temp_dir = setup_test_project();

0 commit comments

Comments
 (0)