arthas 0.3.0

Arthas is an in-memory structure database.
Documentation

#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate arthas_derive;
extern crate rand;
extern crate arthas;
extern crate env_logger;

pub mod common;
pub mod model;

use model::*;
use arthas::Error;
use common::setup;

#[test]
fn test_can_not_replace() {
    setup();

    assert_eq!(Comment::session().replace(Comment { ..Default::default() }),
               Err(Error::CanNotReplace));
}

#[test]
fn test_field_not_found() {
    setup();

    assert_eq!(Article::session().field("bad field").eq("bad value").find(),
               Err(Error::FieldNotFound));
}