Remove a scripted test that uses Bintray

This commit is contained in:
Eugene Yokota 2021-05-02 21:02:23 -04:00
parent ccca321a0f
commit 56c1a0598c
4 changed files with 0 additions and 40 deletions

View File

@ -1,6 +0,0 @@
case class A(msg: String)
object A {
def default = A("OK")
}

View File

@ -1,14 +0,0 @@
import java.io.File
import java.nio.file.Files
import scalaz.stream._
import scalaz.concurrent.Task
object Main extends App {
val pch = Process.constant((i:Int) => Task.now(())).take(3)
val count = Process.constant(1).toSource.to(pch).runLog.run.size
assert(count == 3)
Files.write(new File("output").toPath, A.default.msg.getBytes("UTF-8"))
}

View File

@ -1,17 +0,0 @@
ThisBuild / scalaVersion := "2.11.12"
lazy val a = project
.settings(
resolvers += "Scalaz Bintray Repo" at "https://dl.bintray.com/scalaz/releases"
)
lazy val b = project
.dependsOn(a)
.settings(
// resolver added in inter-project dependency only - should still be fine
libraryDependencies += "org.scalaz.stream" %% "scalaz-stream" % "0.7.1a"
)
lazy val root = project
.in(file("."))
.aggregate(a, b)

View File

@ -1,3 +0,0 @@
$ delete output
> b/run
$ exists output