Add unit tests for display of ObsidianNoteReference

This commit is contained in:
Nick Groenen 2021-02-15 12:19:02 +01:00
parent 25233cec4a
commit 2635cdb3a7
No known key found for this signature in database
GPG Key ID: 93EC881C83165FCE
1 changed files with 49 additions and 0 deletions

View File

@ -809,4 +809,53 @@ mod tests {
}
);
}
#[test]
fn test_display_of_note_refs() {
assert_eq!(
"Note",
ObsidianNoteReference {
file: Some("Note"),
label: None,
section: None,
}
.display()
);
assert_eq!(
"Note > Heading",
ObsidianNoteReference {
file: Some("Note"),
label: None,
section: Some("Heading"),
}
.display()
);
assert_eq!(
"Heading",
ObsidianNoteReference {
file: None,
label: None,
section: Some("Heading"),
}
.display()
);
assert_eq!(
"Label",
ObsidianNoteReference {
file: Some("Note"),
label: Some("Label"),
section: Some("Heading"),
}
.display()
);
assert_eq!(
"Label",
ObsidianNoteReference {
file: None,
label: Some("Label"),
section: Some("Heading"),
}
.display()
);
}
}