Skip to content

Instantly share code, notes, and snippets.

@japhb
Created March 18, 2010 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save japhb/337002 to your computer and use it in GitHub Desktop.
Save japhb/337002 to your computer and use it in GitHub Desktop.
#! parrot-nqp
INIT {
pir::load_language('parrot');
pir::load_bytecode('kakapo_full.pbc');
}
class Test::Sanity is UnitTest::Testcase;
INIT { use('UnitTest::All'); }
method test_load_linalg_group() {
my $pla := pir::loadlib__ps("./linalg_group");
assert_not_null($pla, "Can load PLA library, linalg_group");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment