Last active
July 25, 2017 20:50
-
-
Save olbrichj/38c7a3d78320c69e5186abe25a8452f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Quick | |
import Nimble | |
@testable import TestModule | |
class ModuleTests: QuickSpec { | |
var sut: TestClass? | |
describe("The TestClass") { | |
context("in a specific state") { | |
it("does what ever we test for") { | |
// the actual test | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment