sunaku / md2man

📚 Converts markdown into UNIX manual pages
https://sunaku.github.io/md2man/man
Other
374 stars 23 forks source link

Added the Rake TestTask to the Rakefile. #10

Closed postmodern closed 12 years ago

postmodern commented 12 years ago

Added the Rake test task, to easily run the tests.

sunaku commented 12 years ago

Thanks, but I prefer to test with fork.

postmodern commented 12 years ago

@sunaku could you add a note to the README on how to run tests? Never heard of fork before and usually expected a test or spec task.

sunaku commented 12 years ago

The standard way of running tests in Ruby is:

ruby -Ilib:test test/the_file_you_want_to_run.rb

That's what rake test does underneath, in a loop.