aboutsummaryrefslogtreecommitdiffstats
path: root/tests/math_text.rs
diff options
context:
space:
mode:
authorLibravatar Titus Wormer <tituswormer@gmail.com>2022-10-14 10:49:28 +0200
committerLibravatar Titus Wormer <tituswormer@gmail.com>2022-10-14 10:49:28 +0200
commit246063fb7cd21a83beae5934f95b2795fb85df51 (patch)
tree5f82a11d17ea5468376693c7a0405ed71d7ae147 /tests/math_text.rs
parent9cc1ad4a90616b7fb4ae7b425a5b9844887f4584 (diff)
downloadmarkdown-rs-246063fb7cd21a83beae5934f95b2795fb85df51.tar.gz
markdown-rs-246063fb7cd21a83beae5934f95b2795fb85df51.tar.bz2
markdown-rs-246063fb7cd21a83beae5934f95b2795fb85df51.zip
Refactor to use default trait in tests
Diffstat (limited to '')
-rw-r--r--tests/math_text.rs18
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/math_text.rs b/tests/math_text.rs
index 892690b..4b6fb6a 100644
--- a/tests/math_text.rs
+++ b/tests/math_text.rs
@@ -14,11 +14,11 @@ fn math_text() -> Result<(), String> {
constructs: Constructs {
math_text: true,
math_flow: true,
- ..Constructs::default()
+ ..Default::default()
},
- ..ParseOptions::default()
+ ..Default::default()
},
- ..Options::default()
+ ..Default::default()
};
assert_eq!(
@@ -41,12 +41,12 @@ fn math_text() -> Result<(), String> {
constructs: Constructs {
math_text: true,
math_flow: true,
- ..Constructs::default()
+ ..Default::default()
},
math_text_single_dollar: false,
- ..ParseOptions::default()
+ ..Default::default()
},
- ..Options::default()
+ ..Default::default()
}
)?,
"<p>$foo$ <code class=\"language-math math-inline\">bar</code></p>",
@@ -151,14 +151,14 @@ fn math_text() -> Result<(), String> {
constructs: Constructs {
math_text: true,
math_flow: true,
- ..Constructs::default()
+ ..Default::default()
},
- ..ParseOptions::default()
+ ..Default::default()
},
compile: CompileOptions {
allow_dangerous_html: true,
allow_dangerous_protocol: true,
- ..CompileOptions::default()
+ ..Default::default()
}
}
)?,