├── .gitignore ├── .scalafmt.conf ├── project ├── build.properties └── plugins.sbt └── src ├── main └── scala │ └── ScalaInTheCity.scala └── test ├── resources └── data.txt └── scala └── GitHubSpec.scala /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamgfraser/0-to-100-with-zio-test/HEAD/.gitignore -------------------------------------------------------------------------------- /.scalafmt.conf: -------------------------------------------------------------------------------- 1 | version = "2.4.2" 2 | -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version = 1.3.10 -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamgfraser/0-to-100-with-zio-test/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /src/main/scala/ScalaInTheCity.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamgfraser/0-to-100-with-zio-test/HEAD/src/main/scala/ScalaInTheCity.scala -------------------------------------------------------------------------------- /src/test/resources/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamgfraser/0-to-100-with-zio-test/HEAD/src/test/resources/data.txt -------------------------------------------------------------------------------- /src/test/scala/GitHubSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamgfraser/0-to-100-with-zio-test/HEAD/src/test/scala/GitHubSpec.scala --------------------------------------------------------------------------------