Sha256: 965d6bbd9802cc96217541526660c735c1142ca2c80a0826f727ac901b58c9fc
Contents?: true
Size: 1.35 KB
Versions: 6
Compression:
Stored size: 1.35 KB
Contents
/* WebROaR - Ruby Application Server - http://webroar.in/ * Copyright (C) 2009 Goonj LLC * * This file is part of WebROaR. * * WebROaR is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * WebROaR is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with WebROaR. If not, see <http://www.gnu.org/licenses/>. */ /****************************************************************************** * C Extension to run Unit Test Cases *****************************************************************************/ #ifndef __APPLE__ #include <ruby.h> #endif #include <test.h> void run_test(){ test_scgi(); test_yaml_parser(); test_queue(); test_util(); } #ifndef __APPLE__ VALUE run(){ run_test(); } Init_test_ext() { VALUE mTest; VALUE cTest; mTest = rb_define_module("Test"); cTest = rb_define_class_under(mTest, "Test", rb_cObject); rb_define_singleton_method(cTest, "run", run, 0); } #endif
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
webroar-0.7.0 | test/unit/test.c |
webroar-0.6.1 | test/unit/test.c |
webroar-0.5.0 | test/unit/test.c |
webroar-0.4.0 | test/unit/test.c |
webroar-0.3.1 | test/unit/test.c |
webroar-0.3.0 | test/unit/test.c |