The Wayback Machine - https://web.archive.org/web/20200614083715/https://github.com/Quick/Quick
Skip to content
The Swift (and Objective-C) testing framework.
Swift Objective-C Ruby Shell
Branch: master
Clone or download

Latest commit

Latest commit 0038bcb Jun 8, 2020

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github Parallelize CI builds more (Take 2) Jun 1, 2020
Documentation Fix Xcode documentation link of how to create xcworkspace Mar 28, 2020
Externals Update Nimble to 9.0.0-rc.1 Jun 1, 2020
Quick Templates Retain import order Mar 28, 2020
Quick.xcodeproj Bump Swift requirement to 5.2 (Xcode 11.4 or later) Jun 1, 2020
Quick.xcworkspace [Xcode] Enable New Build System May 24, 2018
Sources Delegate `recordFailure` to `QuickSpec.current` Jun 2, 2020
Tests Bump Swift requirement to 5.2 (Xcode 11.4 or later) Jun 1, 2020
script Bump Swift requirement to 5.2 (Xcode 11.4 or later) Jun 1, 2020
.gitignore Update Nimble to 7.0.3 Nov 23, 2017
.gitmodules Fix Xcode 8 GM compatibility Sep 7, 2016
.swiftlint.yml [SwiftLint] Set trailing_comma's mandatory_comma option to true May 26, 2020
.travis.yml Bump Swift requirement to 5.2 (Xcode 11.4 or later) Jun 1, 2020
CODE_OF_CONDUCT.md Add [email protected] to CoC Aug 19, 2016
CONTRIBUTING.md Fix typos in Contributing documentation file Oct 28, 2019
Dangerfile Tweak CI May 21, 2020
Gemfile Bump Swift requirement to 5.2 (Xcode 11.4 or later) Jun 1, 2020
Gemfile.lock Bump Swift requirement to 5.2 (Xcode 11.4 or later) Jun 1, 2020
LICENSE LICENSE: Migrate from MIT to Apache 2.0 license Nov 1, 2014
Package.resolved Update Nimble to 9.0.0-rc.1 Jun 1, 2020
Package.swift Update Nimble to 9.0.0-rc.1 Jun 1, 2020
Quick.podspec Bumping version to 3.0.0 Jun 8, 2020
README.md Bump Swift requirement to 5.2 (Xcode 11.4 or later) Jun 1, 2020
Rakefile Bump Swift requirement to 5.2 (Xcode 11.4 or later) Jun 1, 2020

README.md

Build Status CocoaPods Carthage Compatible Accio supported Platforms

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

// 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())
        }
      }
    }
  }
}

Nimble

Quick comes together with Nimble — a matcher framework for your tests. You can learn why XCTAssert() statements make your expectations unclear and how to fix that using Nimble assertions here.

Swift Version

Certain versions of Quick and Nimble only support certain versions of Swift. Depending on which version of Swift your project uses, you should use specific versions of Quick and Nimble. Use the table below to determine which versions of Quick and Nimble are compatible with your project.

Swift version Quick version Nimble version
Swift 5.2 v3.0.0 or later v9.0.0 or later
Swift 4.2 / Swift 5 v1.3.2 or later v7.3.2 or later
Swift 3 / Swift 4 v1.0.0 or later v5.0.0 or later
Swift 2.2 / Swift 2.3 v0.9.3 v4.1.0

Documentation

All documentation can be found in the Documentation folder, including detailed installation instructions for CocoaPods, Carthage, Git submodules, and more. For example, you can install Quick and Nimble using CocoaPods by adding the following to your Podfile:

# Podfile

use_frameworks!

target "MyApp" do
  # Normal libraries

  abstract_target 'Tests' do
    inherit! :search_paths
    target "MyAppTests"
    target "MyAppUITests"

    pod 'Quick'
    pod 'Nimble'
  end
end

Projects using Quick

Over ten-thousand apps use either Quick and Nimble however, as they are not included in the app binary, neither appear in “Top Used Libraries” blog posts. Therefore, it would be greatly appreciated to remind contributors that their efforts are valued by compiling a list of organizations and projects that use them.

Does your organization or project use Quick and Nimble? If yes, please add your project to the list.

Who uses Quick

Similar to projects using Quick, it would be nice to hear why people use Quick and Nimble. Are there features you love? Are there features that are just okay? Are there some features we have that no one uses?

Have something positive to say about Quick (or Nimble)? If yes, provide a testimonial here.

License

Apache 2.0 license. See the LICENSE file for details.

You can’t perform that action at this time.