Gayathri
Gayathri

Reputation: 1

How would I start an inmemory version of cockroachDB to run my BDD?

Hello all I am working creating on BDD's with cockroach DB. Unfortunately I am not able to find any reference document in order to create a BDD for cockroach DB.

Upvotes: 0

Views: 98

Answers (1)

Thomas
Thomas

Reputation: 71

If by BDD you mean behaviour-driven development, BDD isn't something you "create", it's a style of development that is guided and tested by the behaviours your application is intended to provide. I don't think CockroachDB offers any docs specifically related to developing using BDD, but there is a doc for general testing best practices with CockroachDB . Alternatively, a little background reading might be helpful:

BDD in general

and applying it to databases

Upvotes: 1

Related Questions