Skip to content
/ Quick Public
forked from mesbekmek/Quick

The Swift (and Objective-C) testing framework.

License

Notifications You must be signed in to change notification settings

ayunav/Quick

This branch is up to date with mesbekmek/Quick:master.

Folders and files

NameName
Last commit message
Last commit date
Feb 29, 2016
Feb 16, 2016
Jul 6, 2015
Feb 16, 2016
Nov 21, 2014
Jan 19, 2016
Mar 2, 2016
Feb 14, 2016
Jan 16, 2016
Oct 20, 2014
Mar 3, 2016
Jan 16, 2016
Jan 18, 2016
Nov 1, 2014
Jan 16, 2016
Feb 9, 2016
Feb 9, 2016
Jan 24, 2016
Feb 14, 2016

Repository files navigation

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.

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!

def testing_pods
    pod 'Quick', '~> 0.9.0'
    pod 'Nimble', '3.0.0'
end

target 'MyTests' do
    testing_pods
end

target 'MyUITests' do
    testing_pods
end

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.9%
  • Objective-C 35.8%
  • Shell 5.0%
  • Ruby 2.3%