mirror of
https://github.com/pezkuwichain/pezkuwi-runtime-templates.git
synced 2026-04-22 06:47:55 +00:00
Unit tests for EVM template (#391)
* EVM unit tests * fmt & clippy * toml sort * fix assert_matches & warnings * fix fmt * fix clippy
This commit is contained in:
@@ -11,8 +11,12 @@ mod constant_tests {
|
||||
|
||||
assert_eq!(DOLLARS, 100 * CENTS);
|
||||
|
||||
#[cfg(not(feature = "runtime-benchmarks"))]
|
||||
assert_eq!(EXISTENTIAL_DEPOSIT, 0);
|
||||
|
||||
#[cfg(feature = "runtime-benchmarks")]
|
||||
assert_eq!(EXISTENTIAL_DEPOSIT, 1);
|
||||
|
||||
// Ensure deposit function behavior remains constant
|
||||
assert_eq!(deposit(2, 3), 2 * 15 * CENTS + 3 * 6 * CENTS);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user