{"id":15050752,"url":"https://github.com/quick/quick","last_synced_at":"2025-05-12T05:27:40.454Z","repository":{"id":17699956,"uuid":"20506004","full_name":"Quick/Quick","owner":"Quick","description":"The Swift (and Objective-C) testing framework.","archived":false,"fork":false,"pushed_at":"2025-04-07T00:14:21.000Z","size":3593,"stargazers_count":9823,"open_issues_count":40,"forks_count":911,"subscribers_count":222,"default_branch":"main","last_synced_at":"2025-05-12T04:06:09.100Z","etag":null,"topics":["bdd","carthage","cocoapods","ios","objective-c","swift","testing"],"latest_commit_sha":null,"homepage":"http://quick.github.io/Quick/","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Quick.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/funding.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":["jessesquires","younata"]}},"created_at":"2014-06-05T00:29:53.000Z","updated_at":"2025-05-12T02:18:40.000Z","dependencies_parsed_at":"2023-02-17T00:55:44.823Z","dependency_job_id":"fd314653-a3d3-4c4c-803f-8e43b1326087","html_url":"https://github.com/Quick/Quick","commit_stats":{"total_commits":1530,"total_committers":178,"mean_commits":8.595505617977528,"dds":0.8248366013071895,"last_synced_commit":"7953fa26bb4c7652898b6049efd26dfe5caf8b8b"},"previous_names":[],"tags_count":58,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Quick%2FQuick","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Quick%2FQuick/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Quick%2FQuick/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Quick%2FQuick/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Quick","download_url":"https://codeload.github.com/Quick/Quick/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253672701,"owners_count":21945480,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bdd","carthage","cocoapods","ios","objective-c","swift","testing"],"created_at":"2024-09-24T21:29:12.501Z","updated_at":"2025-05-12T05:27:40.416Z","avatar_url":"https://github.com/Quick.png","language":"Swift","readme":"![](http://f.cl.ly/items/0r1E192C1R0b2g2Q3h2w/QuickLogo_Color.png)\n\n[![Build Status](https://github.com/Quick/Quick/actions/workflows/ci-xcode.yml/badge.svg)](https://github.com/Quick/Quick/actions/workflows/ci-xcode.yml)\n[![CocoaPods](https://img.shields.io/cocoapods/v/Quick.svg)](https://cocoapods.org/pods/Quick)\n[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)\n[![Platforms](https://img.shields.io/cocoapods/p/Quick.svg)](https://cocoapods.org/pods/Quick)\n\nQuick is a behavior-driven development framework for Swift and Objective-C.\nInspired by [RSpec](https://github.com/rspec/rspec), [Specta](https://github.com/specta/specta), and [Ginkgo](https://github.com/onsi/ginkgo).\n\n![](https://raw.githubusercontent.com/Quick/Assets/master/Screenshots/QuickSpec%20screenshot.png)\n\n```swift\n// Swift\n\nimport Quick\nimport Nimble\n\nclass TableOfContentsSpec: QuickSpec {\n  override class func spec() {\n    describe(\"the 'Documentation' directory\") {\n      it(\"has everything you need to get started\") {\n        let sections = Directory(\"Documentation\").sections\n        expect(sections).to(contain(\"Organized Tests with Quick Examples and Example Groups\"))\n        expect(sections).to(contain(\"Installing Quick\"))\n      }\n\n      context(\"if it doesn't have what you're looking for\") {\n        it(\"needs to be updated\") {\n          let you = You(awesome: true)\n          expect{you.submittedAnIssue}.toEventually(beTruthy())\n        }\n      }\n    }\n  }\n}\n```\n#### Nimble\nQuick comes together with [Nimble](https://github.com/Quick/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/en-us/NimbleAssertions.md).\n\n## Swift Version\n\nCertain 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.\n\n|Swift version        |Quick version   |Nimble version |\n|:--------------------|:---------------|:--------------|\n|Swift 5.2            |v3.0.0 or later |v9.0.0 or later|\n|Swift 4.2 / Swift 5  |v1.3.2 or later |v7.3.2 or later|\n|Swift 3 / Swift 4    |v1.0.0 or later |v5.0.0 or later|\n|Swift 2.2 / Swift 2.3|v0.9.3          |v4.1.0         |\n\n## Documentation\n\nAll documentation can be found in the [Documentation folder](./Documentation), including [detailed installation instructions](./Documentation/en-us/InstallingQuick.md) for CocoaPods, Carthage, Git submodules, Swift Package Manager, and more. For example, you can install Quick and [Nimble](https://github.com/Quick/Nimble) using CocoaPods by adding the following to your `Podfile`:\n\n```rb\n# Podfile\n\nuse_frameworks!\n\ntarget \"MyApp\" do\n  # Normal libraries\n\n  target 'MyApp_Tests' do\n    inherit! :search_paths\n\n    pod 'Quick'\n    pod 'Nimble'\n  end\nend\n```\n\nYou can also install Quick and Nimble using Swift Package Manager by adding the following to the dependencies section your `Package.swift`:\n\n```swift\ndependencies: [\n    .package(url: \"https://github.com/Quick/Quick.git\", from: \"7.0.0\"),\n    .package(url: \"https://github.com/Quick/Nimble.git\", from: \"12.0.0\"),\n],\n```\n\n## Projects using Quick\n\nOver 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. \n\nDoes your organization or project use Quick and Nimble? If yes, [please add your project to the list](https://github.com/Quick/Quick/wiki/Projects-using-Quick).\n\n## Who uses Quick\n\nSimilar 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?\n\nHave something positive to say about Quick (or Nimble)? If yes, [provide a testimonial here](https://github.com/Quick/Quick/wiki/Who-uses-Quick).\n\n## Privacy Statement\n\nQuick is a library that is only used for testing and should never be included in the binary submitted to App Store Connect.\nYour app will be rejected if you do include Quick in the submitted binary because Quick uses private APIs to better integrate with Xcode.\n\nDespite not being shipped to Apple, Quick does not and will never collect any kind of analytics or tracking.\n\n## License\n\nApache 2.0 license. See the [`LICENSE`](LICENSE) file for details.\n","funding_links":["https://github.com/sponsors/jessesquires","https://github.com/sponsors/younata"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquick%2Fquick","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fquick%2Fquick","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquick%2Fquick/lists"}