/t/basic/00test.t
http://github.com/NotFound/winxed · Raku · 15 lines · 9 code · 5 blank · 1 comment · 2 complexity · 68718dc309221f2f6c8b3492056758d5 MD5 · raw file
- #! winxed
- // Basic tests: test that we can test
- // Not so basic functionality, but is needed for other tests.
- using extern Test.More plan, ok;
- function main()
- {
- plan(1);
- ok(1, "plan and ok works");
- }
- // End