test_toruby.c 204 B

1234567891011121314151617181920
  1. /**
  2. * This is a test for toruby in $package$
  3. */
  4. #include "si_test.h"
  5. #include "toruby.h"
  6. TEST_FUNC(toruby) {
  7. TEST_DONE();
  8. }
  9. int main(void) {
  10. TEST_INIT();
  11. TEST_RUN(toruby);
  12. TEST_REPORT();
  13. }