| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 | 2 |
| 3 # Copyright (c) 2012 Google Inc. All rights reserved. | 3 # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 """ | 7 """ |
| 8 Verifies that bundles that have no 'sources' (pure resource containers) work. | 8 Verifies that bundles that have no 'sources' (pure resource containers) work. |
| 9 """ | 9 """ |
| 10 | 10 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 'test.gyp', 'dependent_on_resource_bundle', chdir='sourceless-module') | 37 'test.gyp', 'dependent_on_resource_bundle', chdir='sourceless-module') |
| 38 | 38 |
| 39 test.built_file_must_exist( | 39 test.built_file_must_exist( |
| 40 'resource_bundle.bundle/Contents/Resources/foo.manifest', | 40 'resource_bundle.bundle/Contents/Resources/foo.manifest', |
| 41 chdir='sourceless-module') | 41 chdir='sourceless-module') |
| 42 test.built_file_must_not_exist( | 42 test.built_file_must_not_exist( |
| 43 'resource_bundle.bundle/Contents/MacOS/resource_bundle', | 43 'resource_bundle.bundle/Contents/MacOS/resource_bundle', |
| 44 chdir='sourceless-module') | 44 chdir='sourceless-module') |
| 45 | 45 |
| 46 test.pass_test() | 46 test.pass_test() |
| OLD | NEW |