| Index: lib/src/prism/tests/languages/powershell/namespace_feature.test
|
| diff --git a/lib/src/prism/tests/languages/powershell/namespace_feature.test b/lib/src/prism/tests/languages/powershell/namespace_feature.test
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..92d0b94c8f439d90e97eceb780804b584ce4b8e6
|
| --- /dev/null
|
| +++ b/lib/src/prism/tests/languages/powershell/namespace_feature.test
|
| @@ -0,0 +1,14 @@
|
| +[System.String]::Empty;
|
| +[Foo.Bar+Baz]::Abc;
|
| +[int] 42;
|
| +
|
| +----------------------------------------------------
|
| +
|
| +[
|
| + ["namespace", "[System.String]"],"::Empty",["punctuation", ";"],
|
| + ["namespace", "[Foo.Bar+Baz]"],"::Abc",["punctuation", ";"],
|
| + ["namespace", "[int]"]," 42",["punctuation", ";"]
|
| +]
|
| +----------------------------------------------------
|
| +
|
| +Testing namespaces
|
|
|