mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 11:37:32 +03:00
36cc213841
- The font from Typesetter does not equal to the input font... Why?
30 lines
805 B
Swift
30 lines
805 B
Swift
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
import Cocoa
|
|
import Nimble
|
|
|
|
// I don't know why the font returned by Typesetter is not equal to the font
|
|
// it should be equal to. This is a workaround.
|
|
func equalFont(_ expectedValue: NSFont?) -> Predicate<NSFont> {
|
|
return Predicate { actualExpression in
|
|
let msg = ExpectationMessage.expectedActualValueTo(
|
|
"equal <\(String(describing: expectedValue))>"
|
|
)
|
|
if let actualValue = try actualExpression.evaluate() {
|
|
return PredicateResult(
|
|
bool: NSFont(name: actualValue.fontName,
|
|
size: actualValue.pointSize) == expectedValue!,
|
|
message: msg
|
|
)
|
|
} else {
|
|
return PredicateResult(
|
|
status: .fail,
|
|
message: msg.appendedBeNilHint()
|
|
)
|
|
}
|
|
}
|
|
}
|