deno.land / std@0.224.0 / path / common_test.ts

common_test.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.import { assertEquals } from "../assert/mod.ts";import { common } from "./mod.ts";
Deno.test({ name: "common() returns shared path", fn() { const actual = common( [ "file://deno/cli/js/deno.ts", "file://deno/std/path/mod.ts", "file://deno/cli/js/main.ts", ], "/", ); assertEquals(actual, "file://deno/"); },});
Deno.test({ name: "common() returns empty string if no shared path is present", fn() { const actual = common( ["file://deno/cli/js/deno.ts", "https://deno.land/std/path/mod.ts"], "/", ); assertEquals(actual, ""); },});
Deno.test({ name: "common() checks windows separator", fn() { const actual = common( [ "c:\\deno\\cli\\js\\deno.ts", "c:\\deno\\std\\path\\mod.ts", "c:\\deno\\cli\\js\\main.ts", ], "\\", ); assertEquals(actual, "c:\\deno\\"); },});
Deno.test({ name: "common(['', '/'], '/') returns ''", fn() { const actual = common(["", "/"], "/"); assertEquals(actual, ""); },});
Deno.test({ name: "common(['/', ''], '/') returns ''", fn() { const actual = common([ "/", "", ], "/"); assertEquals(actual, ""); },});
Deno.test({ name: "common() returns the first path unmodified when it's the only path", fn() { const actual = common(["./deno/std/path/mod.ts"], "/"); assertEquals(actual, "./deno/std/path/mod.ts"); },});
Deno.test({ name: "common() returns the first path unmodified if all paths are equal", fn() { const actual = common( [ "./deno/std/path/mod.ts", "./deno/std/path/mod.ts", "./deno/std/path/mod.ts", ], "/", ); assertEquals(actual, "./deno/std/path/mod.ts"); },});
std

Version Info

Tagged at
3 weeks ago