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
1 change: 1 addition & 0 deletions src/Model/Parameter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public class Parameter : IEquatable<Parameter>

public string Description { get; set;}

[YamlIgnore]
public List<string> ParameterValue { get; set;}

public string DefaultValue { get; set;}
Expand Down
13 changes: 0 additions & 13 deletions test/Pester/assets/get-date.yml
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,6 @@ parameters:


This parameter was introduced in PowerShell 7.1.
parameterValue: []
defaultValue: None
supportsWildcards: false
isDynamic: false
Expand Down Expand Up @@ -447,7 +446,6 @@ parameters:


`Get-Date -Date "6/25/2019 12:30:22"` returns Tuesday, June 25, 2019 12:30:22
parameterValue: []
defaultValue: None
supportsWildcards: false
isDynamic: false
Expand Down Expand Up @@ -477,7 +475,6 @@ parameters:
If the specified value is greater than the number of days in a month, PowerShell adds the number of

days to the month. For example, `Get-Date -Month 2 -Day 31` displays **March 3**, not **February 31**.
parameterValue: []
defaultValue: None
supportsWildcards: false
isDynamic: false
Expand All @@ -501,7 +498,6 @@ parameters:
- **Time**: displays only the time

- **DateTime**: displays the date and time
parameterValue: []
defaultValue: None
supportsWildcards: false
isDynamic: false
Expand Down Expand Up @@ -557,7 +553,6 @@ parameters:
using a 4-digit year, 2-digit month, 2-digit day, the letter `T` as a time separator, 2-digit
hour, 2-digit minute, 2-digit second, 4-digit millisecond, and the letter `Z` as the UTC
indicator). For example: 20190627T1540500718Z.
parameterValue: []
defaultValue: None
supportsWildcards: false
isDynamic: false
Expand All @@ -581,7 +576,6 @@ parameters:
- name: Hour
type: System.Int32
description: Specifies the hour that is displayed. Enter a value from 0 to 23.
parameterValue: []
defaultValue: None
supportsWildcards: false
isDynamic: false
Expand All @@ -598,7 +592,6 @@ parameters:


This parameter was introduced in PowerShell 3.0.
parameterValue: []
defaultValue: None
supportsWildcards: false
isDynamic: false
Expand All @@ -611,7 +604,6 @@ parameters:
- name: Minute
type: System.Int32
description: Specifies the minute that is displayed. Enter a value from 0 to 59.
parameterValue: []
defaultValue: None
supportsWildcards: false
isDynamic: false
Expand All @@ -624,7 +616,6 @@ parameters:
- name: Month
type: System.Int32
description: Specifies the month that is displayed. Enter a value from 1 to 12.
parameterValue: []
defaultValue: None
supportsWildcards: false
isDynamic: false
Expand All @@ -637,7 +628,6 @@ parameters:
- name: Second
type: System.Int32
description: Specifies the second that is displayed. Enter a value from 0 to 59.
parameterValue: []
defaultValue: None
supportsWildcards: false
isDynamic: false
Expand All @@ -663,7 +653,6 @@ parameters:
necessary to display the date. As a result, some of the properties and methods of **DateTime**

objects might not be available.
parameterValue: []
defaultValue: None
supportsWildcards: false
isDynamic: false
Expand Down Expand Up @@ -691,7 +680,6 @@ parameters:


This parameter was introduced in PowerShell 7.1.
parameterValue: []
defaultValue: None
supportsWildcards: false
isDynamic: false
Expand All @@ -715,7 +703,6 @@ parameters:
- name: Year
type: System.Int32
description: Specifies the year that is displayed. Enter a value from 1 to 9999.
parameterValue: []
defaultValue: None
supportsWildcards: false
isDynamic: false
Expand Down
Loading