Creating your own "interestingness" tests

The first argument will the file whose interestingness is in question. If Lithium gets extra arguments on the command line, it will pass them to the test.

The test should return 0 ("success") to indicate that the input is interesting, and nonzero to indicate that the input is uninteresting.

Tests can be written in bash, python, or any other language that lets you handle command-line arguments and set exit codes.

It's up to you whether your test will take extra arguments, perhaps making it more reusable, or whether you hard-code things, perhaps making it take less typing to use.

Ideas