We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When not specified, it should be considuered as VOID.
This is an example of what the current version generates:
#Public Method It '[AnsibleVariableCollection] --> SetVariables($Variables) : - should return type []' { # -- Arrange [AnsibleVar[]]$Variables = '' # -- Act $Instance = [AnsibleVariableCollection]::New() # -- Assert ($Instance.SetVariables($Variables)).GetType().Name | should be } #End It Block
This is what it should actually look like:
#Public Method It '[AnsibleVariableCollection] --> SetVariables($Variables) : - should return type []' { # -- Arrange $Variables = @() $Variables += [AnsibleVar]::New('var1', 'val1', 'host1') $Variables += [AnsibleVar]::New('var2', 'val2', 'host2') # -- Act $Instance = [AnsibleVariableCollection]::New() # -- Assert $Instance.SetVariables($Variables) | should be $null } #End It Block
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When not specified, it should be considuered as VOID.
This is an example of what the current version generates:
This is what it should actually look like:
The text was updated successfully, but these errors were encountered: