Skip to content

Commit e39791a

Browse files
Add missing codegen mod in integration tests (#1418)
* add codgen mod to the module tree * port codegen tests to scale-typegen * remove test flag
1 parent 78e9574 commit e39791a

4 files changed

Lines changed: 2 additions & 222 deletions

File tree

testing/integration-tests/src/full_client/codegen/codegen_tests.rs

Lines changed: 0 additions & 214 deletions
This file was deleted.

testing/integration-tests/src/full_client/codegen/documentation.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use codec::Decode;
66
use regex::Regex;
7-
use subxt_codegen::{ syn, CodegenBuilder };
7+
use subxt_codegen::{syn, CodegenBuilder};
88
use subxt_metadata::Metadata;
99

1010
fn load_test_metadata() -> Metadata {

testing/integration-tests/src/full_client/codegen/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,4 @@
1414
#[allow(clippy::all)]
1515
mod polkadot;
1616

17-
mod codegen_tests;
1817
mod documentation;

testing/integration-tests/src/full_client/mod.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,10 @@
22
// This file is dual-licensed as Apache-2.0 or GPL-3.0.
33
// see LICENSE for license details.
44

5-
#[cfg(test)]
65
mod blocks;
7-
#[cfg(test)]
86
mod client;
9-
#[cfg(test)]
7+
mod codegen;
108
mod frame;
11-
#[cfg(test)]
129
mod metadata;
13-
#[cfg(test)]
1410
mod runtime_api;
15-
#[cfg(test)]
1611
mod storage;

0 commit comments

Comments
 (0)