> Rake is a tool for running tasks of any nature, which you can invoke with the 
> command `rake`. If you run `rake -T` in your project, you'll see that `rake 
> spec` is just one of many other tasks you can run that do all kinds of 
> things, not just to do with running tests.
> 
> RSpec is a tool for running BDD-style unit tests, which you can invoke with 
> the command `rspec`. If you run `rspec --help` you'll see all the options you 
> could pass to the rspec command.
Right..  I just was wondering if the entire process of invoking RSpec to run
all tests is identical between 'rake spec' and 'spec rspec'

Which I am assuming by your answer that it is.  Rake spec runs a task that
probably just does: 'spec rspec'  ?

Patrick J. Collins
http://collinatorstudios.com
_______________________________________________
rspec-users mailing list
rspec-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/rspec-users

Reply via email to