#!/usr/bin/ruby -I/usr/share/apt-listbugs/

###
### test the get_bugs interface, which returns the bugs matching the key-id pair from the BTS.
### 

require 'debian/bts'
require 'debian/btssoap'
$DEBUG=1
soap=Debian::BTSSOAP::Soap.new
sa = Debian::BTSSOAP::StringArray.new
p soap.get_bugs('package','mercury','severity', 'serious');

