1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-18 19:21:39 +03:00
vimr/Commons/Tests/CommonsTests/StringCommonsTest.swift
2020-09-18 16:01:55 +02:00

16 lines
372 B
Swift

/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
import Nimble
import XCTest
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"))
}
}