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

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

Issue 11737013: Validate that a package doesn't depend on itself. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 7 years, 12 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/validator/dependency.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/tests/pub/validator_test.dart
diff --git a/utils/tests/pub/validator_test.dart b/utils/tests/pub/validator_test.dart
index 6f5764a95a4beabf134f6f640d83c019a743f784..1c064bed10dc132682bed064e5de13170051c0e4 100644
--- a/utils/tests/pub/validator_test.dart
+++ b/utils/tests/pub/validator_test.dart
@@ -531,5 +531,17 @@ main() {
});
});
});
+
+ test('has a hosted dependency on itself', () {
+ dir(appPath, [
+ libPubspec("test_pkg", "1.0.0", [
+ {'hosted': {'name': 'test_pkg', 'version': '>=1.0.0'}}
+ ])
+ ]).scheduleCreate();
+
+ expectValidationWarning(dependency);
+
+ run();
+ });
});
}
« no previous file with comments | « utils/pub/validator/dependency.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698