Skip to content

Commit

Permalink
More load tests
Browse files Browse the repository at this point in the history
  • Loading branch information
azawawi committed Oct 31, 2012
1 parent 7e2b378 commit 1b33b43
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions t/01-load.t
Expand Up @@ -4,9 +4,17 @@ BEGIN { @*INC.push('lib') };

use Test;

plan 2;
plan 6;

use Farabi6;

ok 1, "use Farabi6 worked!";
ok 1, "'use Farabi6' worked!";
ok Farabi6.new, "Farabi6.new worked";

use Farabi6::Editor;
ok 1, "'use Farabi6::Editor worked!";
ok Farabi6::Editor.new, "Farabi6.Editor.new worked";

use Farabi6::Util;
ok 1, "'use Farabi6::Util worked!";
ok Farabi6::Util.new, "Farabi6::Util.new worked";

0 comments on commit 1b33b43

Please sign in to comment.