With Test Drive, you can quickly try out any Swift pod or framework in a playground. Simply run testdrive
followed by the name of a pod, or the URL to a Git repository, and you will have a playground generated for you in no time!
Features
- Quickly try out a pod/framework without having to modify your project.
- Try out multiple pods/frameworks at once - ideal when comparing similar ones.
- Supports iOS, macOS & tvOS.
π Take a pod for a test drive:
$ testdrive Unbox
π Take a framework from a Git URL for a test drive:
$ testdrive [email protected]:johnsundell/files.git
π Take multiple pods at once for a test drive:
$ testdrive Unbox Wrap
π Take a test drive on a specific platform (iOS is the default):
$ testdrive Unbox -p tvOS
π Use a specific version or branch for your test drive (the latest version is used by default):
$ testdrive Unbox -v 2.3.0
$ testdrive Unbox -v swift3
$ testdrive Wrap --master
The easiest way to install Test Drive is using Marathon:
$ marathon install johnsundell/testdrive
You can also install it using the Swift Package Manager:
$ git clone https://github.com/JohnSundell/TestDrive.git
$ cd TestDrive
$ swift build -c release
$ cp -f .build/release/TestDrive /usr/local/bin/testdrive
I spend almost all of my available time building tools, content and learning materials for the Swift community β all of which are available to everyone, for free. However, since Iβm just one person, I do have to prioritize what I spend my time on β and one thing Iβm currently not able to offer is 1:1 support for open source projects. Thatβs why this repository has Issues disabled. Itβs not because I donβt want to help, I really do, Iβm just simply not able to.
So before you start using this tool, I recommend that you spend a few minutes familiarizing yourself with its internals (itβs all normal Swift code), so that youβll be able to self-service on any issues or edge cases you might encounter.
Thanks for understanding, and I hope youβll enjoy TestDrive!
β John