All tests compile. Most tests work.

This commit is contained in:
Gav
2018-02-07 16:34:18 +01:00
parent 4f15a6d488
commit ef059b81f1
9 changed files with 15 additions and 7 deletions
+3 -1
View File
@@ -10,7 +10,6 @@ substrate-runtime-io = { path = "../runtime-io" }
substrate-primitives = { path = "../primitives" }
substrate-serializer = { path = "../serializer" }
substrate-state-machine = { path = "../state-machine" }
native-runtime = { path = "../native-runtime" }
ed25519 = { path = "../ed25519" }
serde = "1.0"
serde_derive = "1.0"
@@ -20,6 +19,9 @@ rustc-hex = "1.0.0"
triehash = "0.1.0"
hex-literal = "0.1.0"
log = "0.3"
# TODO: Remove these and split out tests and a concrete executor.
native-runtime = { path = "../native-runtime" }
polkadot-primitives = { path = "../polkadot-primitives" }
[dev-dependencies]
assert_matches = "1.1"
+4 -1
View File
@@ -38,10 +38,13 @@ extern crate serde;
extern crate parity_wasm;
extern crate byteorder;
extern crate rustc_hex;
extern crate native_runtime;
extern crate triehash;
#[macro_use] extern crate log;
// TODO: Remove and split out into polkadot-specific crate.
extern crate native_runtime;
extern crate polkadot_primitives;
#[cfg(test)]
#[macro_use]
extern crate hex_literal;