summaryrefslogtreecommitdiff
path: root/t/00load.t
diff options
context:
space:
mode:
Diffstat (limited to 't/00load.t')
-rw-r--r--t/00load.t11
1 files changed, 11 insertions, 0 deletions
diff --git a/t/00load.t b/t/00load.t
new file mode 100644
index 0000000..814784e
--- /dev/null
+++ b/t/00load.t
@@ -0,0 +1,11 @@
+use Test::More qw(no_plan);
+BEGIN { use_ok('Class::XPath',
+ get_name => 'name',
+ get_parent => 'parent',
+ get_root => 'root',
+ get_children => 'kids',
+ get_attr_names => 'param',
+ get_attr_value => 'param',
+ get_content => 'data',
+ ); }
+