rincon_core 0.1.0

Core lib for the ArangoDB driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14

use super::*;

const PKG_VERSION: &str = env!("CARGO_PKG_VERSION");

#[test]
fn rincon_version_to_string() {
    assert_eq!(&RinconVersion.to_string(), PKG_VERSION);
}

#[test]
fn rincon_user_agent_to_string() {
    assert_eq!(&RinconUserAgent.to_string(), &("rincon v".to_string() + PKG_VERSION + ", https://github.com/innoave/rincon"));
}