https://github.com/dirk/speedy
Pure-Swift (no XCTest) test framework
https://github.com/dirk/speedy
Last synced: about 1 year ago
JSON representation
Pure-Swift (no XCTest) test framework
- Host: GitHub
- URL: https://github.com/dirk/speedy
- Owner: dirk
- License: bsd-3-clause
- Created: 2015-08-07T19:28:50.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-09-18T02:27:27.000Z (almost 11 years ago)
- Last Synced: 2025-04-09T15:13:54.336Z (about 1 year ago)
- Language: Swift
- Size: 195 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Speedy
Standalone Swift BDD framework; write specs without the need for Xcode or XCTest.
Currently Speedy depends on the [Roost] build tool and [Nimble] assertion framework.
[Roost]: https://github.com/dirk/Roost
[Nimble]: https://github.com/Quick/Nimble
## Setup and running
You'll need Roost built in the parent directory, see [its repository](https://github.com/dirk/Roost) for instructions on downloading and building Roost.
```bash
git clone https://github.com/dirk/Speedy.git
# Fetch the dependencies
cd Speedy/vendor; carthage bootstrap --platform mac; cd ..
# Use Roost to build Speedy
../Roost/bin/roost build
# Then build Speedy's own tests
../Roost/bin/roost test
# And finally run the tests!
bin/test-speedy
```
## License
Licensed under the 3-clause BSD license. See [LICENSE](LICENSE) for details.