Add the describe command

...which should, hopefully, show useful information about a particular
YANG node, such as the YANG-level description, the units, type info,
etc.

Change-Id: Id430ae58fe353124e5132fa5a69378e98932ebce
diff --git a/tests/command_completion.cpp b/tests/command_completion.cpp
index 1d44646..eb4949a 100644
--- a/tests/command_completion.cpp
+++ b/tests/command_completion.cpp
@@ -22,14 +22,14 @@
     SECTION("")
     {
         input = "";
-        expectedCompletions = {"cd", "create", "delete", "set", "commit", "get", "ls", "discard", "help"};
+        expectedCompletions = {"cd", "create", "delete", "set", "commit", "get", "ls", "discard", "help", "describe"};
         expectedContextLength = 0;
     }
 
     SECTION(" ")
     {
         input = " ";
-        expectedCompletions = {"cd", "create", "delete", "set", "commit", "get", "ls", "discard", "help"};
+        expectedCompletions = {"cd", "create", "delete", "set", "commit", "get", "ls", "discard", "help", "describe"};
         expectedContextLength = 0;
     }
 
@@ -43,7 +43,7 @@
     SECTION("d")
     {
         input = "d";
-        expectedCompletions = {"delete", "discard"};
+        expectedCompletions = {"delete", "discard", "describe"};
         expectedContextLength = 1;
     }