| Index: tests/standalone/io/link_test.dart
|
| diff --git a/tests/standalone/io/link_test.dart b/tests/standalone/io/link_test.dart
|
| index 7bef4c55641f77018c4ea7c8b6a89645d3cf386a..dc9cb72d936ccdcac8f5611dc83730e73b22d393 100644
|
| --- a/tests/standalone/io/link_test.dart
|
| +++ b/tests/standalone/io/link_test.dart
|
| @@ -173,6 +173,28 @@ testCreateLoopingLink() {
|
| new Directory.fromPath(base).delete(recursive: true));
|
| }
|
|
|
| +testRenameSync() {
|
| + testRename(Path base, String target) {
|
| + Link link1 = new Link.fromPath(base.append('c'))..createSync(target);
|
| + Expect.isTrue(link1.existsSync());
|
| + Link link2 = link1.renameSync(base.append('d').toString());
|
| + Expect.isFalse(link1.existsSync());
|
| + Expect.isTrue(link2.existsSync());
|
| + link2.deleteSync();
|
| + Expect.isFalse(link2.existsSync());
|
| + }
|
| +
|
| + Directory baseDir = new Directory('').createTempSync();
|
| + Path base = new Path(baseDir.path);
|
| + Directory dir = new Directory.fromPath(base.append('a'))..createSync();
|
| + File file = new File.fromPath(base.append('b'))..createSync();
|
| +
|
| + testRename(base, file.path);
|
| + testRename(base, dir.path);
|
| +
|
| + baseDir.deleteSync(recursive: true);
|
| +}
|
| +
|
| void testLinkErrorSync() {
|
| Expect.throws(() =>
|
| new Link('some-dir-that-doent exist/some link file/bla/fisk').createSync(
|
| @@ -183,5 +205,6 @@ void testLinkErrorSync() {
|
| main() {
|
| testCreateSync();
|
| testCreateLoopingLink();
|
| + testRenameSync();
|
| testLinkErrorSync();
|
| }
|
|
|