Nafta
Creates temporary SQLite database for testing using diesel.
[]
= { = "https://github.com/fbucek/nafta" }
Minimal example
// Database
extern crate diesel;
Example with migration
// Database
extern crate diesel;
extern crate diesel_migrations;
// This macro from `diesel_migrations` defines an `embedded_migrations` module
// containing a function named `run`. This allows the example to be run and
// tested without any outside setup of the database.
embed_migrations!;