Sha256: dea80ec9c2639da23897ff7cedaa9bfff6c7ea000fcab5a2bbe0e9542a0c0907
Contents?: true
Size: 595 Bytes
Versions: 1
Compression:
Stored size: 595 Bytes
Contents
# Rspec::WebserviceMatchers This gem enables you to black-box test a web app's server configuration. For example, whether its SSL certificate is correctly configured and not expired. It's a tool for doing **Test Driven Devops**. (I just made that up.) TODO: Finish the Gem set up and register as a Gem. Example ------- ```Ruby require 'rspec/webservice_matchers' describe 'My app' do it 'is configured for ssl' do # New-style RSpec syntax expect('www.myapp.com').to have_a_valid_cert # Old-style RSpec syntax 'www.weblaws.org'.should have_a_valid_cert end end ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rspec-webservice_matchers-0.0.1 | README.md |