2016-12-11 19:14:42 +01:00
|
|
|
// Copyright 2015, 2016 Parity Technologies (UK) Ltd.
|
2016-03-11 10:17:20 +01:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-03-18 22:57:26 +01:00
|
|
|
//! Test rpc services.
|
|
|
|
|
2016-03-11 10:17:20 +01:00
|
|
|
mod sync_provider;
|
2016-03-13 16:35:52 +01:00
|
|
|
mod miner_service;
|
2016-09-27 16:27:06 +02:00
|
|
|
mod fetch;
|
2016-10-31 17:32:53 +01:00
|
|
|
mod snapshot_service;
|
2016-12-12 03:49:50 +01:00
|
|
|
mod update_service;
|
2016-03-11 10:17:20 +01:00
|
|
|
|
|
|
|
pub use self::sync_provider::{Config, TestSyncProvider};
|
2016-05-27 18:40:48 +02:00
|
|
|
pub use self::miner_service::TestMinerService;
|
2016-09-27 16:27:06 +02:00
|
|
|
pub use self::fetch::TestFetch;
|
2016-12-12 03:49:50 +01:00
|
|
|
pub use self::snapshot_service::TestSnapshotService;
|
|
|
|
pub use self::update_service::TestUpdater;
|