1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-26 07:13:24 +03:00

GH-308 Fix tests

This commit is contained in:
Tae Won Ha 2016-11-05 15:43:58 +01:00
parent bd4470f987
commit dae348338b
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44

View File

@ -21,7 +21,7 @@ class FileUtilsTest: XCTestCase {
fileUtilsRsrcUrl.appendingPathComponent("a1"), fileUtilsRsrcUrl.appendingPathComponent("a1"),
] ]
expect(FileUtils.commonParent(ofUrls: urls)).to(equal(a1Dir)) expect(FileUtils.commonParent(of: urls)).to(equal(a1Dir))
} }
func testCommonParentOneFileUrl() { func testCommonParentOneFileUrl() {
@ -29,11 +29,11 @@ class FileUtilsTest: XCTestCase {
fileUtilsRsrcUrl.appendingPathComponent("a1/a1-file1"), fileUtilsRsrcUrl.appendingPathComponent("a1/a1-file1"),
] ]
expect(FileUtils.commonParent(ofUrls: urls)).to(equal(a1Dir)) expect(FileUtils.commonParent(of: urls)).to(equal(a1Dir))
} }
func testCommonParentEmptyParams() { func testCommonParentEmptyParams() {
expect(FileUtils.commonParent(ofUrls: []) as URL).to(equal(URL(fileURLWithPath: "/", isDirectory: true))) expect(FileUtils.commonParent(of: []) as URL).to(equal(URL(fileURLWithPath: "/", isDirectory: true)))
} }
func testCommonParent1() { func testCommonParent1() {
@ -42,7 +42,7 @@ class FileUtilsTest: XCTestCase {
fileUtilsRsrcUrl.appendingPathComponent("a1/a1-file1"), fileUtilsRsrcUrl.appendingPathComponent("a1/a1-file1"),
] ]
expect(FileUtils.commonParent(ofUrls: urls)).to(equal(a1Dir)) expect(FileUtils.commonParent(of: urls)).to(equal(a1Dir))
} }
func testCommonParent2() { func testCommonParent2() {
@ -52,7 +52,7 @@ class FileUtilsTest: XCTestCase {
fileUtilsRsrcUrl.appendingPathComponent("a1/a2/a1-a2-file1"), fileUtilsRsrcUrl.appendingPathComponent("a1/a2/a1-a2-file1"),
] ]
expect(FileUtils.commonParent(ofUrls: urls)).to(equal(a1Dir)) expect(FileUtils.commonParent(of: urls)).to(equal(a1Dir))
} }
func testBug1() { func testBug1() {
@ -60,7 +60,7 @@ class FileUtilsTest: XCTestCase {
fileUtilsRsrcUrl.appendingPathComponent("Downloads/test2/some/nginx.config"), fileUtilsRsrcUrl.appendingPathComponent("Downloads/test2/some/nginx.config"),
fileUtilsRsrcUrl.appendingPathComponent(".Trash/nginx.config") fileUtilsRsrcUrl.appendingPathComponent(".Trash/nginx.config")
] ]
expect(FileUtils.commonParent(ofUrls: paths)).to(equal(fileUtilsRsrcUrl)) expect(FileUtils.commonParent(of: paths)).to(equal(fileUtilsRsrcUrl))
} }
func testBug2() { func testBug2() {
@ -68,7 +68,7 @@ class FileUtilsTest: XCTestCase {
fileUtilsRsrcUrl.appendingPathComponent("Downloads/test2/some/nginx.config"), fileUtilsRsrcUrl.appendingPathComponent("Downloads/test2/some/nginx.config"),
fileUtilsRsrcUrl.appendingPathComponent(".Trash/nginx.config/de/nginx.config") fileUtilsRsrcUrl.appendingPathComponent(".Trash/nginx.config/de/nginx.config")
] ]
expect(FileUtils.commonParent(ofUrls: paths)).to(equal(fileUtilsRsrcUrl)) expect(FileUtils.commonParent(of: paths)).to(equal(fileUtilsRsrcUrl))
} }
func testCommonParent3() { func testCommonParent3() {
@ -79,7 +79,7 @@ class FileUtilsTest: XCTestCase {
fileUtilsRsrcUrl.appendingPathComponent("b1/b1-file1"), fileUtilsRsrcUrl.appendingPathComponent("b1/b1-file1"),
] ]
expect(FileUtils.commonParent(ofUrls: urls)).to(equal(fileUtilsRsrcUrl)) expect(FileUtils.commonParent(of: urls)).to(equal(fileUtilsRsrcUrl))
} }
func testCommonParent4() { func testCommonParent4() {
@ -90,7 +90,7 @@ class FileUtilsTest: XCTestCase {
fileUtilsRsrcUrl.appendingPathComponent("b1"), fileUtilsRsrcUrl.appendingPathComponent("b1"),
] ]
expect(FileUtils.commonParent(ofUrls: urls)).to(equal(fileUtilsRsrcUrl)) expect(FileUtils.commonParent(of: urls)).to(equal(fileUtilsRsrcUrl))
} }
func testCommonParent5() { func testCommonParent5() {
@ -100,6 +100,6 @@ class FileUtilsTest: XCTestCase {
fileUtilsRsrcUrl.appendingPathComponent("a1/a2"), fileUtilsRsrcUrl.appendingPathComponent("a1/a2"),
] ]
expect(FileUtils.commonParent(ofUrls: urls)).to(equal(a1Dir)) expect(FileUtils.commonParent(of: urls)).to(equal(a1Dir))
} }
} }