Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions dsc/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
"ms.topic": {
"docs-conceptual/**": "conceptual",
"docs-conceptual/**/getting-started/**": "get-started",
"docs-conceptual/**/get-started/**": "get-started",
"docs-conceptual/**/how-tos/**": "how-to",
"docs-conceptual/**/overview/**": "overview",
"docs-conceptual/**/quickstarts/**": "quickstart",
Expand All @@ -63,7 +64,7 @@
},
"globalMetadata": {
"apiPlatform": "powershell",
"author": "sdwheeler",
"author": "michaeltlombardi",
"breadcrumb_path": "/powershell/dsc/breadcrumb/toc.json",
"extendBreadcrumb": true,
"feedback_system": "OpenSource",
Expand All @@ -78,7 +79,7 @@
"open_source_feedback_productName": "DSC",
"hideScope": false,
"manager": "jasongroce",
"ms.author": "sewhee",
"ms.author": "mlombardi",
"ms.devlang": "powershell",
"ms.service": "powershell",
"searchScope": [
Expand Down
6 changes: 3 additions & 3 deletions dsc/docs-conceptual/dsc-3.0/reference/cli/resource/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@ Validates the actual state of a resource instance against a desired state.
### Instance properties from input option

```sh
dsc resource set --input <INPUT> --resource <RESOURCE>
dsc resource test --input <INPUT> --resource <RESOURCE>
```

### Instance properties from file

```sh
dsc resource set --file <FILE> --resource <RESOURCE>
dsc resource test --file <FILE> --resource <RESOURCE>
```

### Instance properties from stdin

```sh
cat <FILE> | dsc resource set [Options] --resource <RESOURCE> --file -
cat <FILE> | dsc resource test [Options] --resource <RESOURCE> --file -
```

## Description
Expand Down
Loading