1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-24 03:25:03 +03:00
vimr/Commons/Tests/CommonsTests/DictionaryCommonsTest.swift
2020-09-18 16:01:55 +02:00

45 lines
680 B
Swift

/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
import Nimble
import XCTest
class DictionaryCommonsTest: XCTestCase {
func testMapToDict() {
let dict = [
1: "a",
2: "b",
3: "c",
]
expect(dict.mapToDict { k, v in (v, "\(k)-\(v)") }).to(equal(
[
"a": "1-a",
"b": "2-b",
"c": "3-c",
]
))
}
func testFlatMapToDict() {
let dict = [
1: "a",
2: "b",
3: "c",
]
expect(dict.flatMapToDict { k, v in
if k == 2 {
return nil
}
return (v, "\(k)-\(v)")
}).to(equal(
[
"a": "1-a",
"c": "3-c",
]
))
}
}