Runs a single test/spec via rake.
As Rails plugin: script/plugin install git://github.com/grosser/single_test.git
As Gem: sudo gem install single_test
require 'single_test' SingleTest.load_tasks
###Single test/spec Searchs for test-files matching the given name.
rake spec:user #run spec/model/user_spec.rb
rake test:users_c #run test/functional/users_controller_test.rb
rake spec:admin/users_c #run spec/controllers/admin/users_controller_spec.rb
rake test:u*hel #run test/helpers/user_helper_test.rb
###Single test-case/example rake spec:user:token #run the first spec in user_spec.rb that matches /token/ rake test:user:token #run all tests in user_test.rb that match /token/
###Spec-server rake spec:user X= #run test on spec_sever (if one is running...), very fast for quick failure pin-pointing
###All one by one rake spec:one_by_one #run each spec/test one by one, to find tests that fail when ran rake test:one_by_one #on their own or produce strange output
###For last mofified file rake test:last rake spec:last
- if
script/spec
is missing, if will use justspec
for specs (which solves some issues) - run whole describe blocks:
describe 'xxx' do describe 'yyy'
-->rake spec:file:'xxx yyy'
- make test:last more clever e.g. lib -> try spec + spec/lib
Michael Grosser
michael@grosser.it
Hereby placed under public domain, do what you want, just do not hold me accountable...