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

Side by Side Diff: sdk/lib/_internal/pub_generated/test/get/git/doesnt_fetch_if_nothing_changes_test.dart

Issue 557563002: Store the async-await compiled pub code directly in the repo. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 library pub_tests;
2 import 'package:path/path.dart' as p;
3 import 'package:scheduled_test/scheduled_test.dart';
4 import '../../../lib/src/io.dart';
5 import '../../descriptor.dart' as d;
6 import '../../test_pub.dart';
7 main() {
8 initConfig();
9 integration("doesn't re-fetch a repository if nothing changes", () {
10 ensureGit();
11 var repo =
12 d.git('foo.git', [d.libDir('foo'), d.libPubspec('foo', '1.0.0')]);
13 repo.create();
14 d.appDir({
15 "foo": {
16 "git": {
17 "url": "../foo.git"
18 }
19 }
20 }).create();
21 pubGet();
22 d.dir(
23 packagesPath,
24 [d.dir('foo', [d.file('foo.dart', 'main() => "foo";')])]).validate();
25 schedule(() => deleteEntry(p.join(sandboxDir, 'foo.git')));
26 pubGet();
27 d.dir(
28 packagesPath,
29 [d.dir('foo', [d.file('foo.dart', 'main() => "foo";')])]).validate();
30 });
31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698