mobileka / guard-codeception

guard extension for the codeception testing framework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Guard::Codeception Build Status

Guard::Codeception is an extension to the guard gem for the codeception testing framework

Installation

$ gem install guard-codeception 

Or add this line to your application's Gemfile:

gem 'guard-codeception'

And then execute:

$ bundle

Guardfle

The Guardfile can be generated from $ guard init codeception. By default Guard::Codeception will listen to any changes to PHP files only but you can alter the regex to your needs.

guard 'codeception' do
	watch(%r{^.*\.php$})
end

Configuration

The following options can be passed to Guard::Codeception

# run only specified suites 		default: [:acceptance, :functional, :unit]
:suites			=> [:acceptence, :custom_suite]

# run specific test group 			default: []
:groups			=> [:foo, :bar]

# enable codeception debug mode 	default: false
:debug 			=> false

# run tests when guard starts		default: false
:test_on_start 	=> false

# path to codecept					default 'codecept'
# if codecept is not avaliable via the PATH you can
# define the path to codecept here. ie: installing codeception
# via composer would be :codecept => 'vendor/bin/codecept'
:codecept		=> '/path/to/codecept'

# extra cli you wish to pass to codeceeption
# ie: config, json or xml output
:cli 			=> false

Usage

$ guard

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

Author

Colby Swandale

Contributors

tmuntan1

About

guard extension for the codeception testing framework

License:MIT License