/t/basic/00test.t

http://github.com/NotFound/winxed · Raku · 15 lines · 9 code · 5 blank · 1 comment · 2 complexity · 68718dc309221f2f6c8b3492056758d5 MD5 · raw file

  1. #! winxed
  2. // Basic tests: test that we can test
  3. // Not so basic functionality, but is needed for other tests.
  4. using extern Test.More plan, ok;
  5. function main()
  6. {
  7. plan(1);
  8. ok(1, "plan and ok works");
  9. }
  10. // End