fix(ci): AŞAMA 3 test düzeltmeleri

- testnet cargo profili eklendi (CI testleri için gerekli)
- tests-misc.yml: frame-feature-testing feature adı düzeltildi
- 179 UI test .stderr dosyası güncellendi (rebrand yansıması)
- ss58-registry doc testleri: ss58_registry -> pezkuwi_ss58_registry
- ss58-registry doc testleri: TokenRegistry::Dot -> TokenRegistry::Hez
- WORKFLOW_PLAN.md güncellendi (doğru CI komutları)
- 3 pezpallet UI test dosyası düzeltildi:
  - PezpalletInfo -> PalletInfo
  - PezpalletError -> PalletError

Test edildi:
- cargo check --workspace --locked --features experimental,ci-only-tests 
- cargo check --workspace --locked --features try-runtime,experimental,ci-only-tests 
- cargo check --workspace --locked --features runtime-benchmarks 
- cargo test --profile testnet -p pezkuwi-node-metrics --features=runtime-metrics 
- cargo test -p pezframe-support-test UI tests 
- cargo test --doc --workspace --all-features 
- cargo build --profile testnet -p pezkuwi-test-malus 
This commit is contained in:
2025-12-25 09:44:29 +03:00
parent bda0c529ee
commit ec61dca3cf
183 changed files with 1141 additions and 1121 deletions
+5 -5
View File
@@ -39,13 +39,13 @@ impl Token {
/// `TokenRegistry` variant.
///
/// ```
/// # use ss58_registry::{Token, TokenRegistry};
/// # use pezkuwi_ss58_registry::{Token, TokenRegistry};
/// # #[cfg(feature = "std")]
/// # fn x() {
/// let token: Token = TokenRegistry::Dot.into();
/// let token: Token = TokenRegistry::Hez.into();
/// let my_amount = token.amount(100_000_000);
/// assert_eq!(format!("{}", my_amount), "0.010 DOT");
/// assert_eq!(format!("{:?}", my_amount), "0.010 DOT (100,000,000)");
/// assert_eq!(format!("{}", my_amount), "0.010 HEZ");
/// assert_eq!(format!("{:?}", my_amount), "0.010 HEZ (100,000,000)");
/// # }
/// # #[cfg(not(feature = "std"))]
/// # fn x() {}
@@ -60,7 +60,7 @@ impl Token {
/// different amounts.
///
/// ```
/// # use ss58_registry::{Token, TokenAmount};
/// # use pezkuwi_ss58_registry::{Token, TokenAmount};
/// # #[cfg(feature = "std")]
/// # fn x() {
/// let token = Token { name: "I❤U", decimals: 8 };