# Infinity Test Infinity Test is a continuous testing library and a flexible alternative to Autotest, using Watchr library with Rspec OR Test::Unit with RVM funcionality, giving the possibility to test with all Rubies that you have in your RVM configuration. ## To Infinity and Beyond!
Infinity Test

Photo taken by this site

## Install * The Infinity Test gem don't have a version, but is looking for contributors. =] This gem will be released in September 17. ## Running Tests only in one ruby With Rspec: infinity_test --rspec With Test::Unit: infinity_test --test-unit ## Running Tests with many Rubies With Rspec: infinity_test --rspec --rubies=1.8.7,jruby,1.9.2,ree Or with Test::Unit: infinity_test --test-unit --rubies=1.8.7,jruby,ree,1.9.2 And you are ready to Test with all ruby versions your Rspec or Test::Unit Suite with Autotest-like Behavior. ## Configuration file ### Simple Domain Specific Language for Infinity Test file If you don't set all the time the rubies that you want, test framework that you want, notifications that you want, you can write some code that infinity_test understand. So create the global file or project file called: ~/.infinity_test or .infinity_test infinity_test do notifications :growl do show_images :mode => :mario_bros end use :rubies => %w(1.9.1 jruby 1.9.2 ree), :test_framework => :rspec before_run do clear :terminal end after_run do puts 'Finished!' end end ### Customize the .infinity_test file #### If you want to customize and understand the .infinity_test file, Read this Page ## You Like it the Idea? So make a fork and start contributing =]. ## You have a Feature request or Fix? Contact me in Github and let's talk! =] ## TODO * Edit the wiki * Working in focus files and run only the modified file (Strategies for Test::Unit, Rspec and Cucumber) # Acknowledgments * Thanks to Mynyml and Watchr library. * Thanks to Waynee Seguin and the RVM.