mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-01 01:32:04 +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"))
|
||
|
}
|
||
|
}
|