File size: 1,205 Bytes
8c763fb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

# Tests related to TFS item 1370133 [PSUpgrade] Need -NoNewline parameter on Out-File, Add-Content and Set-Content
# Connect request https://connect.microsoft.com/PowerShell/feedback/details/524739/need-nonewline-parameter-on-out-file-add-content-and-set-content

Describe "Tests for -NoNewline parameter of Out-File, Add-Content and Set-Content" -tags "Feature" {

    It "NoNewline parameter works on Out-File" {
         $temp = "${TESTDRIVE}/test1.txt"
         1..5 | Out-File $temp -Encoding 'ASCII' -NoNewline
         (Get-Content $temp -AsByteStream).Count | Should -Be 5
    }

    It "NoNewline parameter works on Set-Content" {
         $temp = "${TESTDRIVE}/test2.txt"
         Set-Content -Path $temp -Value 'a','b','c' -Encoding 'ASCII' -NoNewline
         (Get-Content $temp -AsByteStream).Count | Should -Be 3
    }

    It "NoNewline parameter works on Add-Content" {
         $temp = "${TESTDRIVE}/test3.txt"
         $temp = New-TemporaryFile
         1..9 | ForEach-Object {Add-Content -Path $temp -Value $_ -Encoding 'ASCII' -NoNewline}
         (Get-Content $temp -AsByteStream).Count | Should -Be 9
    }
}