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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ to be used as a quick ref.
module TaskSeq =
open System.Collections.Generic
open System.Threading.Tasks
open FSharpy.TaskSeqBuilders
open FSharp.Control.TaskSeqBuilders

/// Initialize an empty taskSeq.
val empty<'T> : taskSeq<'T>
Expand Down
2 changes: 1 addition & 1 deletion src/FSharpy.TaskSeq.Test/AssemblyInfo.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace FSharpy.Tests
namespace TaskSeq.Tests

open System.Runtime.CompilerServices

Expand Down
2 changes: 1 addition & 1 deletion src/FSharpy.TaskSeq.Test/Nunit.Extensions.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace FSharpy.Tests
namespace TaskSeq.Tests

open System
open System.Threading.Tasks
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.Cast.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
module FSharpy.Tests.Cast
module TaskSeq.Tests.Cast

open System

open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control

//
// TaskSeq.box
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.Choose.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module FSharpy.Tests.Choose
module TaskSeq.Tests.Choose

open System
open System.Threading.Tasks
Expand All @@ -7,7 +7,7 @@ open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control

//
// TaskSeq.map
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.Collect.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module FSharpy.Tests.Collect
module TaskSeq.Tests.Collect

open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control

//
// TaskSeq.collect
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.Concat.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
module FSharpy.Tests.Concat
module TaskSeq.Tests.Concat

open System

open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control
open System.Collections.Generic

//
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.Contains.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module FSharpy.Tests.Contains
module TaskSeq.Tests.Contains

open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control

//
// TaskSeq.contains
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.Empty.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module FSharpy.Tests.Empty
module TaskSeq.Tests.Empty

open System.Threading.Tasks
open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control


[<Fact>]
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.ExactlyOne.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module FSharpy.Tests.ExactlyOne
module TaskSeq.Tests.ExactlyOne

open System
open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control

//
// TaskSeq.exactlyOne
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.Exists.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module FSharpy.Tests.Exists
module TaskSeq.Tests.Exists

open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control

//
// TaskSeq.exists
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.Filter.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module FSharpy.Tests.Filter
module TaskSeq.Tests.Filter

open System
open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control

//
// TaskSeq.filter
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.Find.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module FSharpy.Tests.Find
module TaskSeq.Tests.Find

open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control
open System.Collections.Generic

//
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.FindIndex.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module FSharpy.Tests.FindIndex
module TaskSeq.Tests.FindIndex

open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control
open System.Collections.Generic

//
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.Fold.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module FSharpy.Tests.Fold
module TaskSeq.Tests.Fold

open System.Text
open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control

//
// TaskSeq.fold
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.Head.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module FSharpy.Tests.Head
module TaskSeq.Tests.Head

open System
open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control

//
// TaskSeq.head
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.Indexed.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module FSharpy.Tests.Indexed
module TaskSeq.Tests.Indexed

open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control

//
// TaskSeq.indexed
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.Init.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
module FSharpy.Tests.Init
module TaskSeq.Tests.Init

open System

open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control

//
// TaskSeq.init
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.IsEmpty.fs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module FSharpy.Tests.IsEmpty
module TaskSeq.Tests.IsEmpty

open System.Threading.Tasks
open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control

module EmptySeq =

Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.Item.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module FSharpy.Tests.Item
module TaskSeq.Tests.Item

open System
open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control

//
// TaskSeq.item
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.Iter.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module FSharpy.Tests.Iter
module TaskSeq.Tests.Iter

open Xunit
open FsUnit.Xunit

open FSharpy
open FSharp.Control

//
// TaskSeq.iter
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.Last.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module FSharpy.Tests.Last
module TaskSeq.Tests.Last

open System
open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control

//
// TaskSeq.last
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.Length.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module FSharpy.Tests.Length
module TaskSeq.Tests.Length

open System
open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control

//
// TaskSeq.length
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.Map.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module FSharpy.Tests.Map
module TaskSeq.Tests.Map

open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control

//
// TaskSeq.map
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.OfXXX.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module FSharpy.Tests.``Conversion-From``
module TaskSeq.Tests.``Conversion-From``

open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control

let validateSequence sq =
TaskSeq.toArrayAsync sq
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.Pick.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
module FSharpy.Tests.Pick
module TaskSeq.Tests.Pick

open System
open System.Collections.Generic
open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control


//
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.PocTests.fs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
namespace FSharpy.Tests
namespace TaskSeq.Tests

open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control

/////////////////////////////////////////////////////////////////////////////
/// ///
Expand Down
4 changes: 2 additions & 2 deletions src/FSharpy.TaskSeq.Test/TaskSeq.Realworld.fs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
namespace FSharpy.Tests
namespace TaskSeq.Tests

open System
open System.IO
open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control
open System.Threading.Tasks
open System.Diagnostics
open System.Collections.Generic
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module FSharpy.Tests.``Bug #42 -- asynchronous`` // see PR #42
module TaskSeq.Tests.``Bug #42 -- asynchronous`` // see PR #42

open System
open System.Threading.Tasks
Expand All @@ -9,7 +9,7 @@ open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control

// Module contains same tests as its previous file
// except that each item is delayed randomly to force
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module FSharpy.Tests.``Bug #42 -- synchronous`` // see PR #42
module TaskSeq.Tests.``Bug #42 -- synchronous`` // see PR #42

open System
open System.Threading.Tasks
Expand All @@ -9,7 +9,7 @@ open Xunit
open FsUnit.Xunit
open FsToolkit.ErrorHandling

open FSharpy
open FSharp.Control

[<Fact>]
let ``CE empty taskSeq with MoveNextAsync -- untyped`` () = task {
Expand Down
Loading