Skip to content
This repository was archived by the owner on Dec 4, 2023. It is now read-only.
Open
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
6 changes: 4 additions & 2 deletions src/test/scala/io/findify/s3mock/TypesafeConfigTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ import com.typesafe.config.ConfigFactory
class TypesafeConfigTest extends S3MockTest {
override def behaviour(fixture: => Fixture) = {

it should "load typesafe config files" ignore {
val conf = ConfigFactory.parseResources("/test.conf")
it should "load typesafe config files" in {
val config = ConfigFactory.load("test.conf")
config.getString("foo.testConfig") shouldBe "test"
val conf = ConfigFactory.parseResources("test.conf")
conf.getString("foo.testConfig") shouldBe "test"
}
}
Expand Down