diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-10-14 10:49:28 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-10-14 10:49:28 +0200 |
commit | 246063fb7cd21a83beae5934f95b2795fb85df51 (patch) | |
tree | 5f82a11d17ea5468376693c7a0405ed71d7ae147 /tests/link_reference.rs | |
parent | 9cc1ad4a90616b7fb4ae7b425a5b9844887f4584 (diff) | |
download | markdown-rs-246063fb7cd21a83beae5934f95b2795fb85df51.tar.gz markdown-rs-246063fb7cd21a83beae5934f95b2795fb85df51.tar.bz2 markdown-rs-246063fb7cd21a83beae5934f95b2795fb85df51.zip |
Refactor to use default trait in tests
Diffstat (limited to 'tests/link_reference.rs')
-rw-r--r-- | tests/link_reference.rs | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/tests/link_reference.rs b/tests/link_reference.rs index 3769fbc..310cf40 100644 --- a/tests/link_reference.rs +++ b/tests/link_reference.rs @@ -13,9 +13,9 @@ fn link_reference() -> Result<(), String> { compile: CompileOptions { allow_dangerous_html: true, allow_dangerous_protocol: true, - ..CompileOptions::default() + ..Default::default() }, - ..Options::default() + ..Default::default() }; assert_eq!( @@ -397,11 +397,11 @@ fn link_reference() -> Result<(), String> { parse: ParseOptions { constructs: Constructs { label_start_link: false, - ..Constructs::default() + ..Default::default() }, - ..ParseOptions::default() + ..Default::default() }, - ..Options::default() + ..Default::default() } )?, "<p>[x]()</p>", @@ -415,11 +415,11 @@ fn link_reference() -> Result<(), String> { parse: ParseOptions { constructs: Constructs { label_end: false, - ..Constructs::default() + ..Default::default() }, - ..ParseOptions::default() + ..Default::default() }, - ..Options::default() + ..Default::default() } )?, "<p>[x]()</p>", @@ -427,10 +427,7 @@ fn link_reference() -> Result<(), String> { ); assert_eq!( - to_mdast( - "[x]: y\n\na [x] b [x][] c [d][x] e.", - &ParseOptions::default() - )?, + to_mdast("[x]: y\n\na [x] b [x][] c [d][x] e.", &Default::default())?, Node::Root(Root { children: vec![ Node::Definition(Definition { |