aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/plugin/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/plugin/lib.rs')
-rw-r--r--tests/unit/plugin/lib.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/unit/plugin/lib.rs b/tests/unit/plugin/lib.rs
new file mode 100644
index 00000000000..6e2a9155081
--- /dev/null
+++ b/tests/unit/plugin/lib.rs
@@ -0,0 +1,11 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+#![feature(plugin)]
+#![plugin(plugins)]
+
+extern crate url;
+
+#[cfg(test)]
+mod url_plugin;