The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w
use strict;
use Gnome2;

use constant TESTS => 1;
use Test::More tests => TESTS;

# $Id$

###############################################################################

SKIP: {
  our $application;
  do "t/TestBoilerplate";

  #############################################################################

  Gnome2::Sound -> init();
  Gnome2::Sound -> init("localhost");

  warn Gnome2::Sound -> connection_get();
  warn Gnome2::Sound -> sample_load("bla", "bla");
  Gnome2::Sound -> play("bla");

  Gnome2::Sound -> shutdown();
}