Skip to content

Commit e03116a

Browse files
committed
(chocolateyGH-148) Updates Test FileNames to match Best Practice
Pester considers all files named *.Tests.ps1 to be test files. This is the default naming convention. This commit adjusts cChoco test filenames to match this. See: https://pester-docs.netlify.app/docs/usage/file-placement-and-naming#common-convention
1 parent 210c34a commit e03116a

6 files changed

+310
-310
lines changed
File renamed without changes.
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
# Copyright (c) 2017 Chocolatey Software, Inc.
2-
# Copyright (c) 2013 - 2017 Lawrence Gripper & original authors/contributors from https://github.com/chocolatey/cChoco
3-
#
4-
# Licensed under the Apache License, Version 2.0 (the "License");
5-
# you may not use this file except in compliance with the License.
6-
# You may obtain a copy of the License at
7-
#
8-
# http://www.apache.org/licenses/LICENSE-2.0
9-
#
10-
# Unless required by applicable law or agreed to in writing, software
11-
# distributed under the License is distributed on an "AS IS" BASIS,
12-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
# See the License for the specific language governing permissions and
14-
# limitations under the License.
15-
16-
#---------------------------------#
17-
# Pester tests for cChocoInstall #
18-
#---------------------------------#
19-
$ResourceName = ((Split-Path $MyInvocation.MyCommand.Path -Leaf) -split '_')[0]
20-
$ResourceFile = (Get-DscResource -Name $ResourceName).Path
21-
22-
Describe "Testing $ResourceName loaded from $ResourceFile" {
23-
Context Testing 'Get-TargetResource' {
24-
It 'DummyTest $true should be $true' {
25-
$true | Should Be $true
26-
}
27-
}
28-
}
1+
# Copyright (c) 2017 Chocolatey Software, Inc.
2+
# Copyright (c) 2013 - 2017 Lawrence Gripper & original authors/contributors from https://github.com/chocolatey/cChoco
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
16+
#---------------------------------#
17+
# Pester tests for cChocoInstall #
18+
#---------------------------------#
19+
$ResourceName = ((Split-Path $MyInvocation.MyCommand.Path -Leaf) -split '_')[0]
20+
$ResourceFile = (Get-DscResource -Name $ResourceName).Path
21+
22+
Describe "Testing $ResourceName loaded from $ResourceFile" {
23+
Context Testing 'Get-TargetResource' {
24+
It 'DummyTest $true should be $true' {
25+
$true | Should Be $true
26+
}
27+
}
28+
}

0 commit comments

Comments
 (0)