Skip to content
This repository has been archived by the owner on Apr 20, 2024. It is now read-only.

Commit

Permalink
updated tests #2
Browse files Browse the repository at this point in the history
  • Loading branch information
Casperhr committed Dec 25, 2016
1 parent 7ff69c0 commit 77b2923
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Tests/SlufigyTests/SlugifyTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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())
}
}

0 comments on commit 77b2923

Please sign in to comment.