mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
13 lines
289 B
Swift
13 lines
289 B
Swift
@testable import SwiftLintFramework
|
|
import XCTest
|
|
|
|
class LineEndingTests: XCTestCase {
|
|
func testCarriageReturnDoesNotCauseError() {
|
|
XCTAssert(
|
|
violations(
|
|
Example("// swiftlint:disable all\r\nprint(123)\r\n")
|
|
).isEmpty
|
|
)
|
|
}
|
|
}
|