https://github.com/endel/integra
A nice set of defaults for webapp integration tests, no matter what language your application is written in.
https://github.com/endel/integra
Last synced: 4 months ago
JSON representation
A nice set of defaults for webapp integration tests, no matter what language your application is written in.
- Host: GitHub
- URL: https://github.com/endel/integra
- Owner: endel
- License: mit
- Created: 2013-11-05T17:42:51.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-06-27T00:06:14.000Z (almost 12 years ago)
- Last Synced: 2024-04-25T22:02:05.843Z (about 2 years ago)
- Language: Ruby
- Homepage:
- Size: 148 KB
- Stars: 3
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Integra
A nice set of defaults for integration tests, no matter what language your
application is written in.
## System requirements
- [ruby >= 1.9.2](http://rvm.io/)
- [phantomjs](https://github.com/ariya/phantomjs)
## Installation
Install it globally in your system:
$ gem install integra
## How to use
Goto your project root and run the initializer:
$ cd ~/Projects/my-nice-project/
$ integra init localhost
Running the tests:
$ integra
Running the tests with a custom driver:
$ integra --driver=selenium
For custom [gherkin](https://github.com/cucumber/gherkin) language support, use
the `--lang=` option:
$ integra init --lang=pt
## + info
- [capybara cheat sheet](https://gist.github.com/zhengjia/428105)
## Default toolset
- [rspec](https://github.com/rspec/rspec)
- [capybara](https://github.com/jnicklas/capybara)
- [poltergeist](https://github.com/jonleighton/poltergeist)
- [turnip](https://github.com/jnicklas/turnip/)
- [turnip_formatter](https://github.com/gongo/turnip_formatter/)
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request