From 77b2923d0ef9649250fead0e9851c32f655a673c Mon Sep 17 00:00:00 2001 From: Casper Rasmussen Date: Sun, 25 Dec 2016 22:12:07 +0100 Subject: [PATCH] updated tests #2 --- Tests/SlufigyTests/SlugifyTests.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Tests/SlufigyTests/SlugifyTests.swift b/Tests/SlufigyTests/SlugifyTests.swift index 5e7540d..ca15661 100644 --- a/Tests/SlufigyTests/SlugifyTests.swift +++ b/Tests/SlufigyTests/SlugifyTests.swift @@ -3,15 +3,15 @@ import XCTest class SlugifyTests: XCTestCase { static var allTests = [ - ("test", test) - //("testSpace", testSpace) + ("test", test), + ("testRegular", testRegular) ] func test() { XCTAssertEqual(2+2, 4) } - func testSpace() { - expect("a a".slugify(), toReturn: "a-a") + func testRegular() { + XCTAssertEqual("abc", "abc".slugify()) } }