Skip to content

Commit 69e1e15

Browse files
committedOct 15, 2019
fix inconsistencies
1 parent 681740a commit 69e1e15

File tree

6 files changed

+18
-156
lines changed

6 files changed

+18
-156
lines changed
 

‎azure-pipelines.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ steps:
1919
installationPath: $(Agent.ToolsDirectory)/dotnet
2020
- bash: ./build.sh
2121
condition: or( eq( variables['Agent.OS'], 'Darwin' ), eq( variables['Agent.OS'], 'Linux' ))
22-
displayName: 'build.sh'
22+
displayName: 'build.sh All'
2323
- powershell: .\build.cmd
2424
condition: eq( variables['Agent.OS'], 'Windows_NT' )
25-
displayName: 'build.cmd'
25+
displayName: 'build.cmd All'

‎docs/content/index.fsx

+8-13
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@
55
#r "NUnit.Framework.dll"
66
#r "FsUnit.NUnit.dll"
77

8+
open FsUnit
9+
10+
let anArray = []
11+
let aCollection = System.Collections.Generic.List<int>()
12+
let anObj = obj()
13+
let otherObj = obj()
14+
815
(**
916
What is FsUnit?
1017
===============
@@ -114,8 +121,6 @@ anObj |> should not' (be sameAs otherObj)
114121
0.0 |> should be ofExactType<float>
115122
1 |> should not' (be ofExactType<obj>)
116123

117-
Choice<int, string>.Choice1Of2(42) |> should be (choice 1)
118-
119124
[] |> should be Empty
120125
[1] |> should not' (be Empty)
121126

@@ -124,7 +129,7 @@ Choice<int, string>.Choice1Of2(42) |> should be (choice 1)
124129

125130
2.0 |> should not' (be NaN)
126131

127-
[1;2;3] |> should be unique // Currently, NUnit only and requires version 1.0.1.0+
132+
[1;2;3] |> should be unique
128133

129134
[1;2;3] |> should be ascending
130135
[1;3;2] |> should not' (be ascending)
@@ -146,16 +151,6 @@ Second 5 |> should be (ofCase<@ int @>) // will throw an exception
146151

147152
(**
148153
149-
Visual Studio 11 Support
150-
------------------------
151-
152-
Visual Studio 11 support is available for all 4 of the targetted testing frameworks. FsUnit.MsTest is supported only in VS11 and no additional steps are required to use it.
153-
FsUnit for NUnit and FsUnit.Xunit target F# 2.0 as well as F# 3.0. Because of this, a few additional steps are required
154-
in order to use these libraries in VS11. After installing one of these packages, add an `App.config` file to the project (if one doesn't already exist).
155-
Build the project and then run the command "Add-BindingRedirect projectname" (where projectname is the name of your test project) in the NuGet
156-
Package Manager Console. This command will update the `App.config` to include binding redirects from previous version of `FSharp.Core` to
157-
FSharp.Core version 4.3.0.0. More information about this command can be found in the [NuGet documentation](http://docs.nuget.org/docs/reference/package-manager-console-powershell-reference).
158-
159154
Test Projects Targeting Higher F# Runtimes
160155
------------------------------------------
161156

‎docs/content/operators.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Operators comparison across frameworks
3131
| `haveSubstring` | + | + | + |
3232
| `ofExactType` | + | + | + |
3333
| `instanceOfType` | + | + | + |
34-
| `choice` | + | + | + |
34+
| `choice` | | + | + |
3535
| `ascending` | + | + | + |
3636
| `descending` | + | + | + |
3737
| `not'` | + | + | + |

‎docs/generate.fsx

+7-8
Original file line numberDiff line numberDiff line change
@@ -211,15 +211,14 @@ let processFile outdir path =
211211
|> write outfile
212212

213213

214-
let fileName = System.Environment.GetEnvironmentVariable("CHANGED_FILE")
214+
let generateAll() =
215+
Directory.copyRecursive Path.files Path.output
216+
IO.Directory.EnumerateFiles Path.content |> Seq.iter (processFile Path.output)
215217

218+
let fileName = System.Environment.GetEnvironmentVariable("CHANGED_FILE")
216219
if System.IO.File.Exists fileName
217220
then
218-
printfn "!!! %s" fileName
219-
if fileName.StartsWith(Path.files) then printfn "\tcopy" // TODO:
221+
if fileName.StartsWith(Path.files) then Directory.copyRecursive Path.files Path.output
220222
elif fileName.StartsWith(Path.content) then processFile Path.output fileName
221-
else printfn "\tignore"
222-
223-
else
224-
Directory.copyRecursive Path.files Path.output
225-
IO.Directory.EnumerateFiles Path.content |> Seq.iter (processFile Path.output)
223+
else generateAll()
224+
else generateAll()

‎src/FsUnit.NUnit/FsUnit.Extra.fs

-19
This file was deleted.

‎tests/FsUnit.NUnit.Test/beChoice.fs

-113
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.