This file contains hidden or 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
import com.github.simplyscala.{MongoEmbedDatabase, MongodProps} | |
import com.mongodb.casbah.Imports._ | |
import com.mongodb.casbah.commons.MongoDBObject | |
import de.flapdoodle.embed.mongo.distribution.Version | |
import org.scalatest.{BeforeAndAfter, FunSpec} | |
import org.slf4j.LoggerFactory | |
class EmbeddedMongoDBMutableTest extends FunSpec with MongoEmbedDatabase with BeforeAndAfter { | |
private val LOG = LoggerFactory.getLogger(classOf[EmbeddedMongoDBMutableTest]) |
NewerOlder