Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(472)

Side by Side Diff: utils/tests/archive/reader_test.dart

Issue 11301046: Restructure pkg/unittest and pkg/webdriver to follow the pub conventions. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #library('reader_test'); 5 library reader_test;
6 6
7 #import('dart:io'); 7 import 'dart:io';
8 #import('../../../pkg/unittest/unittest.dart'); 8 import '../../../pkg/unittest/lib/unittest.dart'
9 #import('../../archive/archive.dart'); 9 import '../../archive/archive.dart';
10 10
11 final String dataPath = "utils/tests/archive/data"; 11 final String dataPath = "utils/tests/archive/data";
12 12
13 main() { 13 main() {
14 test('reading a .tar.gz file', () { 14 test('reading a .tar.gz file', () {
15 var asyncDone = expectAsync0(() {}); 15 var asyncDone = expectAsync0(() {});
16 16
17 var reader = new ArchiveReader(); 17 var reader = new ArchiveReader();
18 reader.format.tar = true; 18 reader.format.tar = true;
19 reader.filter.gzip = true; 19 reader.filter.gzip = true;
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 test("opening a non-existent archive", () { 189 test("opening a non-existent archive", () {
190 var reader = new ArchiveReader(); 190 var reader = new ArchiveReader();
191 reader.format.tar = true; 191 reader.format.tar = true;
192 reader.filter.gzip = true; 192 reader.filter.gzip = true;
193 193
194 expect(reader.openFilename("$dataPath/non-existent.tar.gz"), 194 expect(reader.openFilename("$dataPath/non-existent.tar.gz"),
195 throwsA((e) => e is ArchiveException)); 195 throwsA((e) => e is ArchiveException));
196 }); 196 });
197 } 197 }
198 198
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698