aboutsummaryrefslogtreecommitdiff
path: root/mingling_core/tests/test-all
diff options
context:
space:
mode:
Diffstat (limited to 'mingling_core/tests/test-all')
-rw-r--r--mingling_core/tests/test-all/tests/integration.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/mingling_core/tests/test-all/tests/integration.rs b/mingling_core/tests/test-all/tests/integration.rs
index 936ca52..29cc910 100644
--- a/mingling_core/tests/test-all/tests/integration.rs
+++ b/mingling_core/tests/test-all/tests/integration.rs
@@ -1,6 +1,5 @@
use mingling::Flag;
use mingling::NextProcess;
-use mingling::Node;
use mingling::Program;
use mingling::RenderResult;
use mingling::StringVec;
@@ -44,20 +43,6 @@ fn test_res_repl_default() {
assert!(!res.exit);
}
-// Node
-
-#[test]
-fn test_node_creation() {
- let node = Node::from("a.b.c");
- assert_eq!(node.to_string(), "a.b.c");
-}
-
-#[test]
-fn test_node_kebab() {
- let node = Node::from("HelloWorld.FooBar");
- assert_eq!(node.to_string(), "hello-world.foo-bar");
-}
-
// Flag
#[test]