| Path: | README |
| Last Update: | Wed Aug 16 17:11:18 Hora estándar de Sudamérica O. 2006 |
FeedValidator is an interface to the W3C Feed Validation online service, based on its SOAP 1.2 support.
It helps to find errors in RSS or ATOM feeds.
FeedValidator add a new assertion (assert_valid_feed) which you can use in Rails applications. This assertion implements a cache to improve the performance of the tests and to not abuse of the W3C Feed Validation online service
require 'feed_validator'
v = W3C::FeedValidator.new()
v.validate_url('http://www.w3.org/QA/news.rss')
puts v.to_s unless v.valid?
require 'feed_validator/assertions'
And now you can use in your functional test, in this way:
def test_bar_valid_feed
get :bar
assert_valid_feed
end
Or use the class-level method to quickly create validation tests for a bunch of actions at once:
assert_valid_feed :bar, :foo
The latest version of FeedValidator can be found at
Documentation can be found at
You can install FeedValidator as a gem:
gem install feedvalidator
Or you can install it from the tarball or zip packages on the download page and then extract it to your lib directory as you would with any other Ruby library.
FeedValidator is released under the MIT license.
You can find the Feed Validator RubyForge page at rubyforge.org/projects/feedvalidator.
Feel free to submit commits or feature requests.
For other information, feel free to contact edgar@lacaraoscura.com.