aboutsummaryrefslogtreecommitdiffstats
path: root/tests/c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/character_escape.rs1
-rw-r--r--tests/character_reference.rs1
-rw-r--r--tests/code_fenced.rs1
-rw-r--r--tests/code_indented.rs1
-rw-r--r--tests/code_text.rs1
-rw-r--r--tests/commonmark.rs1
6 files changed, 0 insertions, 6 deletions
diff --git a/tests/character_escape.rs b/tests/character_escape.rs
index 41cc68d..e062f28 100644
--- a/tests/character_escape.rs
+++ b/tests/character_escape.rs
@@ -1,4 +1,3 @@
-extern crate markdown;
use markdown::{
mdast::{Node, Paragraph, Root, Text},
to_html, to_html_with_options, to_mdast,
diff --git a/tests/character_reference.rs b/tests/character_reference.rs
index ab253c4..03282a1 100644
--- a/tests/character_reference.rs
+++ b/tests/character_reference.rs
@@ -1,4 +1,3 @@
-extern crate markdown;
use markdown::{
mdast::{Node, Paragraph, Root, Text},
to_html, to_html_with_options, to_mdast,
diff --git a/tests/code_fenced.rs b/tests/code_fenced.rs
index 73bcb9a..403a893 100644
--- a/tests/code_fenced.rs
+++ b/tests/code_fenced.rs
@@ -1,4 +1,3 @@
-extern crate markdown;
use markdown::{
mdast::{Code, Node, Root},
to_html, to_html_with_options, to_mdast,
diff --git a/tests/code_indented.rs b/tests/code_indented.rs
index 66046c4..1bd5726 100644
--- a/tests/code_indented.rs
+++ b/tests/code_indented.rs
@@ -1,4 +1,3 @@
-extern crate markdown;
use markdown::{
mdast::{Code, Node, Root},
to_html, to_html_with_options, to_mdast,
diff --git a/tests/code_text.rs b/tests/code_text.rs
index 482c46f..47d8b19 100644
--- a/tests/code_text.rs
+++ b/tests/code_text.rs
@@ -1,4 +1,3 @@
-extern crate markdown;
use markdown::{
mdast::{InlineCode, Node, Paragraph, Root, Text},
to_html, to_html_with_options, to_mdast,
diff --git a/tests/commonmark.rs b/tests/commonmark.rs
index 7d62016..30f62ca 100644
--- a/tests/commonmark.rs
+++ b/tests/commonmark.rs
@@ -3,7 +3,6 @@
// > 👉 **Important**: this module is generated by `build.rs`.
// > It is generate from the latest CommonMark website.
-extern crate markdown;
use markdown::{to_html_with_options, CompileOptions, Options};
use pretty_assertions::assert_eq;