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

Unified Diff: sdk/lib/_internal/pub/test/barback/directory_args_test.dart

Issue 306693002: Remove support for the special "assets" directory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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
Index: sdk/lib/_internal/pub/test/barback/directory_args_test.dart
diff --git a/sdk/lib/_internal/pub/test/barback/directory_args_test.dart b/sdk/lib/_internal/pub/test/barback/directory_args_test.dart
index 59ce17e169898c26e17ad557a5fe1c2e7ad558a8..90426902fdb2153a00d961fdc703ac5a5bdd00c8 100644
--- a/sdk/lib/_internal/pub/test/barback/directory_args_test.dart
+++ b/sdk/lib/_internal/pub/test/barback/directory_args_test.dart
@@ -14,7 +14,6 @@ main() {
setUp(() {
d.dir(appPath, [
d.appPubspec(),
- d.dir('asset', [d.file('file.txt', 'asset')]),
d.dir('bar', [d.file('file.txt', 'bar')]),
d.dir('foo', [d.file('file.txt', 'foo')]),
d.dir('test', [d.file('file.txt', 'test')]),
@@ -24,25 +23,15 @@ main() {
integration("builds only the given directories", () {
schedulePub(args: ["build", "foo", "bar"],
- output: new RegExp(r'Built 4 files to "build".'));
+ output: new RegExp(r'Built 2 files to "build".'));
d.dir(appPath, [
d.dir('build', [
d.dir('bar', [
- d.file('file.txt', 'bar'),
- d.dir('assets', [
- d.dir('myapp', [
- d.file('file.txt', 'asset')
- ])
- ])
+ d.file('file.txt', 'bar')
]),
d.dir('foo', [
- d.file('file.txt', 'foo'),
- d.dir('assets', [
- d.dir('myapp', [
- d.file('file.txt', 'asset')
- ])
- ])
+ d.file('file.txt', 'foo')
]),
d.nothing('test'),
d.nothing('web')
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/command/build.dart ('k') | sdk/lib/_internal/pub/test/build/handles_long_paths_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698