Tom Hale
Tom Hale

Reputation: 46795

Ruby on Rails: Validating rendered HTML with MiniTest

I'm going through the Ruby on Rails Tutorial and I'm surprised that there is no mention of validating the HTML produced.

How does one validate HTML with Rails' MiniTest?

I'm after a local solution, not something which uses W3C's Markup Validation Service - this is too slow if I honour their request for maximum one hit per second.

Upvotes: 1

Views: 228

Answers (1)

Guy Dubrovski
Guy Dubrovski

Reputation: 1560

There are 2 cool gems that can help you validating html:

Upvotes: 2

Related Questions