#!/usr/bin/perl
use Mooix::Thing;
use Test::More tests => 4, import => ['!fail'];
run sub {
	my $this=shift;
	ok(1, "test system seems to be working");
	ok($this, 'got $this');
	isa_ok($this, 'Mooix::Thing', 'test class');
	ok(length $this->name, 'try a field access');
}
