-
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.
Drop `n` elements from the source and emit subsequent elements (if any left) e.g.: Source.empty[Int].drop(1).toList // List() Source.fromValues(1, 2, 3).drop(1).toList // List(2 ,3) Source.fromValues(1).drop(2).toList // List()
- Loading branch information
1 parent
161557a
commit ea8a9c3
Showing
2 changed files
with
43 additions
and
1 deletion.
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
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,24 @@ | ||
package ox.channels | ||
|
||
import org.scalatest.flatspec.AnyFlatSpec | ||
import org.scalatest.matchers.should.Matchers | ||
import ox.* | ||
|
||
class SourceOpsDropTest extends AnyFlatSpec with Matchers { | ||
behavior of "Source.drop" | ||
|
||
it should "not drop from the empty source" in scoped { | ||
val s = Source.empty[Int] | ||
s.drop(1).toList shouldBe List.empty | ||
} | ||
|
||
it should "drop elements from the source" in scoped { | ||
val s = Source.fromValues(1, 2, 3) | ||
s.drop(2).toList shouldBe List(3) | ||
} | ||
|
||
it should "return empty source when more elements than source length was dropped" in scoped { | ||
val s = Source.fromValues(1, 2) | ||
s.drop(3).toList shouldBe List.empty | ||
} | ||
} |