# BBC Accessiblity Standards
This tool runs a set of tests against a given URL to verify whether it meets the BBC accessibility standards.
Run the a11y
command, passing a URL:
e.g.
a11y http://bbc.co.uk
You can also pass arguments to Cucumber (which is used internally) by separating the arguments with --
. Everything
after the --
is passed directly to Cucumber. For example, to skip the tests that require manual interraction:
a11y http://bbc.co.uk -- -t ~@manual
A11y is packaged as a Ruby gem, but is not yet available on the public Rubygems server. To install it, you'll need to either build it by hand, or add a reference to the github source in your Gemfile.
Install Ruby and gem install bundler
.
Open your project's Gemfile
and this line:
gem 'bbc-a11y`, git: '[email protected]:mattwynne/bbc-a11y.git'
Now install the gem:
bundle install --binstubs
Note: You'll need to make sure every user who wants to run bundle install
(including your continuous integration environment) has at least read access to this Github project.
This will install the a11y
tool globally on your machine.
-
Clone this repository
-
Install dependencies
cd bbc-a11y bundle install
-
Install the gem
bundle exec rake install