Skip to content
forked from Quick/Quick

The Swift (and Objective-C) testing framework.

License

Notifications You must be signed in to change notification settings

tanfq1989/Quick

This branch is 1210 commits behind Quick/Quick:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

70d2bdd · Mar 16, 2015
Mar 14, 2015
Mar 5, 2015
Jun 25, 2014
Mar 5, 2015
Nov 21, 2014
Feb 10, 2015
Dec 27, 2014
Feb 10, 2015
Aug 24, 2014
Oct 20, 2014
Feb 10, 2015
Nov 1, 2014
Jan 23, 2015
Mar 16, 2015
Nov 21, 2014

Repository files navigation

Quick is a behavior-driven development framework for Swift and Objective-C. Inspired by RSpec, Specta, and Ginkgo.

Build Status

// Swift

import Quick
import Nimble

class TableOfContentsSpec: QuickSpec {
  override func spec() {
    describe("the 'Documentation' directory") {
      it("has everything you need to get started") {
        let sections = 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") {
          let you = You(awesome: true)
          expect{you.submittedAnIssue}.toEventually(beTruthy())
        }
      }
    }
  }
}

Documentation

Read the documentation in the Documentation folder.

License

Apache 2.0 license. See the LICENSE file for details.

About

The Swift (and Objective-C) testing framework.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 56.2%
  • Objective-C 42.1%
  • Ruby 1.7%