Skip to content

Commit 1090827

Browse files
committed
Delete test for plugin.xml generation
1 parent dae6458 commit 1090827

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

tool/plugin/test/plugin_test.dart

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -176,18 +176,6 @@ void main() {
176176
});
177177

178178
group('build', () {
179-
test('plugin.xml', () async {
180-
var runner = makeTestRunner();
181-
await runner.run(["-d../..", "make"]);
182-
await removeAll('../../build/classes');
183-
var file = File("../../build/classes/META-INF/plugin.xml");
184-
expect(file.existsSync(), isTrue);
185-
var content = file.readAsStringSync();
186-
expect(content.length, greaterThan(10000));
187-
var loc = content.indexOf('@');
188-
expect(loc, -1);
189-
});
190-
191179
test('only-version', () async {
192180
ProductCommand command =
193181
makeTestRunner().commands['make'] as ProductCommand;

0 commit comments

Comments
 (0)