mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-28 11:35:35 +03:00
17 lines
373 B
Swift
17 lines
373 B
Swift
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
import XCTest
|
|
import Nimble
|
|
|
|
class StringCommonsTest: XCTestCase {
|
|
|
|
func testWithoutPrefix() {
|
|
expect("prefixAbc".without(prefix: "prefix")).to(equal("Abc"))
|
|
expect("prefix".without(prefix: "prefix")).to(equal(""))
|
|
expect("Abcprefix".without(prefix: "prefix")).to(equal("Abcprefix"))
|
|
}
|
|
}
|