Fixing bugs in actorref creation, or rather, glitches

This commit is contained in:
Viktor Klang 2011-06-06 16:48:25 -07:00
parent e0dd6ba7f8
commit d260e6268e

View file

@ -16,17 +16,10 @@ class ConfigSpec extends WordSpec with MustMatchers {
"contain all configuration properties for akka-http that are used in code with their correct defaults" in {
import Config.config._
getString("akka.http.authenticator") must equal(Some("N/A"))
getBool("akka.http.connection-close") must equal(Some(true))
getString("akka.http.expired-header-name") must equal(Some("Async-Timeout"))
getList("akka.http.filters") must equal(List("akka.security.AkkaSecurityFilterFactory"))
getList("akka.http.resource-packages") must equal(Nil)
getString("akka.http.hostname") must equal(Some("localhost"))
getString("akka.http.expired-header-value") must equal(Some("expired"))
getString("akka.http.kerberos.servicePrincipal") must equal(Some("N/A"))
getString("akka.http.kerberos.keyTabLocation") must equal(Some("N/A"))
getString("akka.http.kerberos.kerberosDebug") must equal(Some("N/A"))
getString("akka.http.kerberos.realm") must equal(Some(""))
getInt("akka.http.port") must equal(Some(9998))
getBool("akka.http.root-actor-builtin") must equal(Some(true))
getString("akka.http.root-actor-id") must equal(Some("_httproot"))