-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from softwaremill/feat_dropWhile
feat: implement `dropWhile` function
- Loading branch information
Showing
2 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
core/src/test/scala/ox/channels/SourceOpsDropWhileTest.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package ox.channels | ||
|
||
import org.scalatest.flatspec.AnyFlatSpec | ||
import org.scalatest.matchers.should.Matchers | ||
import ox.* | ||
|
||
class SourceOpsDropWhileTest extends AnyFlatSpec with Matchers { | ||
behavior of "Source.dropWhile" | ||
|
||
it should "not drop from the empty source" in supervised { | ||
val s = Source.empty[Int] | ||
s.dropWhile(_ > 0).toList shouldBe List.empty | ||
} | ||
|
||
it should "drop elements from the source while predicate is true" in supervised { | ||
val s = Source.fromValues(1, 2, 3) | ||
s.dropWhile(_ < 3).toList shouldBe List(3) | ||
} | ||
|
||
it should "drop elements from the source until predicate is true and then emit subsequent ones" in supervised { | ||
val s = Source.fromValues(1, 2, 3, 2) | ||
s.dropWhile(_ < 3).toList shouldBe List(3, 2) | ||
} | ||
|
||
it should "not drop elements from the source if predicate is false" in supervised { | ||
val s = Source.fromValues(1, 2, 3) | ||
s.dropWhile(_ > 3).toList shouldBe List(1, 2, 3) | ||
} | ||
|
||
it should "not drop elements from the source when predicate is false for first or more elements" in supervised { | ||
val s = Source.fromValues(1, 4, 5) | ||
s.dropWhile(_ > 3).toList shouldBe List(1, 4, 5) | ||
} | ||
} |