ethane 1.0.2

An alternative web3 implementation with the aim of being slim and simple
Documentation
use ethane::rpc;
use ethane::types::U64;

use test_helper::*;

#[test]
fn test_net_version() {
    let mut client = ConnectionWrapper::new_from_env(None);
    rpc_call_test_expected(&mut client, rpc::net_version(), String::from("1337"));
}

#[test]
#[ignore]
fn test_net_peer_count() {
    let mut client = ConnectionWrapper::new_from_env(None);
    rpc_call_test_expected(&mut client, rpc::net_peer_count(), U64::zero());
}

#[test]
fn test_net_listening() {
    let mut client = ConnectionWrapper::new_from_env(None);
    rpc_call_test_expected(&mut client, rpc::net_listening(), true);
}