mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

* add flutter channel command fixes https://github.com/flutter/flutter/issues/2513 * fix test * address comments * remove unused imports * fix lints
29 lines
1.0 KiB
Dart
29 lines
1.0 KiB
Dart
// Copyright 2015 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'package:args/command_runner.dart';
|
|
import 'package:flutter_tools/src/base/context.dart';
|
|
import 'package:flutter_tools/src/base/logger.dart';
|
|
import 'package:flutter_tools/src/commands/channel.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
import 'src/common.dart';
|
|
import 'src/context.dart';
|
|
|
|
void main() {
|
|
group('channel', () {
|
|
testUsingContext('list', () async {
|
|
ChannelCommand command = new ChannelCommand();
|
|
CommandRunner runner = createTestCommandRunner(command);
|
|
expect(await runner.run(<String>['channel']), 0);
|
|
BufferLogger logger = context[Logger];
|
|
expect(logger.errorText, hasLength(0));
|
|
expect(logger.statusText, contains('channels'));
|
|
expect(logger.statusText, contains('master'));
|
|
// fails on bots
|
|
//expect(logger.statusText, contains('* ')); // current channel mark
|
|
});
|
|
});
|
|
}
|