Quick is a behavior-driven development framework for Swift and Objective-C. Inspired by RSpec, Specta, and Ginkgo.
// Swift
import Quick
import Nimble
classTableOfContentsSpec:QuickSpec{overridefunc spec(){describe("the 'Documentation' directory"){it("has everything you need to get started"){letsections=Directory("Documentation").sections
expect(sections).to(contain("Organized Tests with Quick Examples and Example Groups"))expect(sections).to(contain("Installing Quick"))}context("if it doesn't have what you're looking for"){it("needs to be updated"){letyou=You(awesome:true)expect{you.submittedAnIssue}.toEventually(beTruthy())}}}}}Apache 2.0 license. See the LICENSE file for details.

