mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-07 20:08:02 +00:00
62 lines
1.6 KiB
Rust
62 lines
1.6 KiB
Rust
use crate::{Module, Trait};
|
|
use sp_core::H256;
|
|
use frame_support::{impl_outer_origin, parameter_types, weights::Weight};
|
|
use sp_runtime::{
|
|
traits::{BlakeTwo256, IdentityLookup}, testing::Header, Perbill,
|
|
};
|
|
use frame_system as system;
|
|
|
|
impl_outer_origin! {
|
|
pub enum Origin for Test {}
|
|
}
|
|
|
|
// Configure a mock runtime to test the pallet.
|
|
|
|
#[derive(Clone, Eq, PartialEq)]
|
|
pub struct Test;
|
|
parameter_types! {
|
|
pub const BlockHashCount: u64 = 250;
|
|
pub const MaximumBlockWeight: Weight = 1024;
|
|
pub const MaximumBlockLength: u32 = 2 * 1024;
|
|
pub const AvailableBlockRatio: Perbill = Perbill::from_percent(75);
|
|
}
|
|
|
|
impl system::Trait for Test {
|
|
type BaseCallFilter = ();
|
|
type Origin = Origin;
|
|
type Call = ();
|
|
type Index = u64;
|
|
type BlockNumber = u64;
|
|
type Hash = H256;
|
|
type Hashing = BlakeTwo256;
|
|
type AccountId = u64;
|
|
type Lookup = IdentityLookup<Self::AccountId>;
|
|
type Header = Header;
|
|
type Event = ();
|
|
type BlockHashCount = BlockHashCount;
|
|
type MaximumBlockWeight = MaximumBlockWeight;
|
|
type DbWeight = ();
|
|
type BlockExecutionWeight = ();
|
|
type ExtrinsicBaseWeight = ();
|
|
type MaximumExtrinsicWeight = MaximumBlockWeight;
|
|
type MaximumBlockLength = MaximumBlockLength;
|
|
type AvailableBlockRatio = AvailableBlockRatio;
|
|
type Version = ();
|
|
type ModuleToIndex = ();
|
|
type AccountData = ();
|
|
type OnNewAccount = ();
|
|
type OnKilledAccount = ();
|
|
type SystemWeightInfo = ();
|
|
}
|
|
|
|
impl Trait for Test {
|
|
type Event = ();
|
|
}
|
|
|
|
pub type TemplateModule = Module<Test>;
|
|
|
|
// Build genesis storage according to the mock runtime.
|
|
pub fn new_test_ext() -> sp_io::TestExternalities {
|
|
system::GenesisConfig::default().build_storage::<Test>().unwrap().into()
|
|
}
|