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

Unified Diff: utils/tests/pub/lock_file_test.dart

Issue 10803042: Reverting 9767. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « utils/pub/version_solver.dart ('k') | utils/tests/pub/pub_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/tests/pub/lock_file_test.dart
diff --git a/utils/tests/pub/lock_file_test.dart b/utils/tests/pub/lock_file_test.dart
index cab8771783156feb7acbbdd0fea9cca08e13ac8e..f10ba25dfeea55e63865afca0a6351a44f999d54 100644
--- a/utils/tests/pub/lock_file_test.dart
+++ b/utils/tests/pub/lock_file_test.dart
@@ -11,13 +11,12 @@
#import('../../pub/source_registry.dart');
#import('../../pub/utils.dart');
#import('../../pub/version.dart');
-#import('../../pub/yaml/yaml.dart');
class MockSource extends Source {
final String name = 'mock';
final bool shouldCache = false;
- void validateDescription(String description, [bool fromLockFile=false]) {
+ void validateDescription(String description) {
description.endsWith(' desc');
}
@@ -166,31 +165,6 @@ packages:
''', sources);
});
});
-
- group('serialize()', () {
- test('dumps the lockfile to YAML', () {
- var lockfile = new LockFile.empty();
- lockfile.packages['foo'] =
- new PackageId(mockSource, new Version.parse('1.2.3'), 'foo desc');
- lockfile.packages['bar'] =
- new PackageId(mockSource, new Version.parse('3.2.1'), 'bar desc');
-
- expect(loadYaml(lockfile.serialize()), equals({
- 'packages': {
- 'foo': {
- 'version': '1.2.3',
- 'source': 'mock',
- 'description': 'foo desc'
- },
- 'bar': {
- 'version': '3.2.1',
- 'source': 'mock',
- 'description': 'bar desc'
- }
- }
- }));
- });
- });
});
}
« no previous file with comments | « utils/pub/version_solver.dart ('k') | utils/tests/pub/pub_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698