1.0.6
This commit is contained in:
parent
ab788d30af
commit
d50e448c45
3 changed files with 4 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
||||||
# angel_test
|
# angel_test
|
||||||
[![version 1.0.5+1](https://img.shields.io/badge/pub-1.0.5+1-brightgreen.svg)](https://pub.dartlang.org/packages/angel_test)
|
[![version 1.0.6](https://img.shields.io/badge/pub-1.0.6-brightgreen.svg)](https://pub.dartlang.org/packages/angel_test)
|
||||||
[![build status](https://travis-ci.org/angel-dart/test.svg)](https://travis-ci.org/angel-dart/test)
|
[![build status](https://travis-ci.org/angel-dart/test.svg)](https://travis-ci.org/angel-dart/test)
|
||||||
|
|
||||||
Testing utility library for the Angel framework.
|
Testing utility library for the Angel framework.
|
||||||
|
|
|
@ -5,9 +5,7 @@ import 'package:angel_client/base_angel_client.dart' as client;
|
||||||
import 'package:angel_client/io.dart' as client;
|
import 'package:angel_client/io.dart' as client;
|
||||||
import 'package:angel_framework/angel_framework.dart';
|
import 'package:angel_framework/angel_framework.dart';
|
||||||
import 'package:angel_websocket/io.dart' as client;
|
import 'package:angel_websocket/io.dart' as client;
|
||||||
import 'package:http/src/base_request.dart' as http;
|
import 'package:http/http.dart' as http;
|
||||||
import 'package:http/src/response.dart' as http;
|
|
||||||
import 'package:http/src/streamed_response.dart' as http;
|
|
||||||
import 'package:mock_request/mock_request.dart';
|
import 'package:mock_request/mock_request.dart';
|
||||||
import 'package:web_socket_channel/web_socket_channel.dart';
|
import 'package:web_socket_channel/web_socket_channel.dart';
|
||||||
import 'package:web_socket_channel/io.dart';
|
import 'package:web_socket_channel/io.dart';
|
||||||
|
@ -52,7 +50,7 @@ class TestClient extends client.BaseAngelClient {
|
||||||
@override
|
@override
|
||||||
String authToken;
|
String authToken;
|
||||||
|
|
||||||
TestClient(this.server, {this.autoDecodeGzip: true}) : super(null, '/');
|
TestClient(this.server, {this.autoDecodeGzip: true}) : super(new http.Client(), '/');
|
||||||
|
|
||||||
Future close() => server.close();
|
Future close() => server.close();
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ author: "Tobe O <thosakwe@gmail.com>"
|
||||||
description: "Testing utility library for the Angel framework."
|
description: "Testing utility library for the Angel framework."
|
||||||
homepage: "https://github.com/angel-dart/test.git"
|
homepage: "https://github.com/angel-dart/test.git"
|
||||||
name: "angel_test"
|
name: "angel_test"
|
||||||
version: 1.0.5+1
|
version: 1.0.6
|
||||||
dependencies:
|
dependencies:
|
||||||
angel_client: "^1.0.0"
|
angel_client: "^1.0.0"
|
||||||
angel_framework: "^1.0.0-dev"
|
angel_framework: "^1.0.0-dev"
|
||||||
|
|
Loading…
Reference in a new issue