user577808
user577808

Reputation: 2527

Ruby Gem Testing Workflow

What is the standard for testing while creating ruby gem?

Do most people run something like guard, or write tests and trigger them manually from the command line?

Upvotes: 0

Views: 181

Answers (1)

robbrit
robbrit

Reputation: 17960

In Ruby there isn't really a "standard", instead people usually use what works well for them. If you don't like things like guard and prefer to run the tests from the command line, run the tests from the command line.

When I'm coding I run my tests manually from the command-line, but I also have a cron job that will run the tests against the latest commits and email the results every night.

Upvotes: 2

Related Questions