Skip to content

Commit

Permalink
Don't ignore that test.
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpalmer committed Oct 2, 2010
1 parent 4e67870 commit f8dd3d8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
@@ -1,2 +1,2 @@
Math-Fractal-Julia*
/Math-Fractal-Julia*
.build
19 changes: 19 additions & 0 deletions t/Math-Fractal-Julia.t
@@ -0,0 +1,19 @@
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl Math-Fractal-Julia.t'

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

# change 'tests => 1' to 'tests => last_test_to_print';

use strict;
use warnings;

use Test::More tests => 2;
BEGIN { use_ok('Math::Fractal::Julia') };

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

# Insert your test code below, the Test::More module is use()ed here so read
# its man page ( perldoc Test::More ) for help writing this test script.

is(Math::Fractal::Julia->set_max_iter(255), 255);

0 comments on commit f8dd3d8

Please sign in to comment.