diff options
author | murphy <murphy@rubychan.de> | 2005-11-05 03:33:11 +0000 |
---|---|---|
committer | murphy <murphy@rubychan.de> | 2005-11-05 03:33:11 +0000 |
commit | a4b1176d13a8f1c80f6bafc26b3d914f246cb6f8 (patch) | |
tree | 98499c0fbfc412a617e0b753654c231a6fa4b179 /test/c/suite.rb | |
parent | ee9c870bfbb4032ca08c1f1760716b5472b64293 (diff) | |
download | coderay-a4b1176d13a8f1c80f6bafc26b3d914f246cb6f8.tar.gz |
test suite updated
C Tests added!
Diffstat (limited to 'test/c/suite.rb')
-rw-r--r-- | test/c/suite.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/c/suite.rb b/test/c/suite.rb new file mode 100644 index 0000000..969703e --- /dev/null +++ b/test/c/suite.rb @@ -0,0 +1,9 @@ +class CTest < CodeRaySuite
+
+ @file = __FILE__
+ LANG = :c
+ EXTENSION = 'c'
+
+end
+
+$suite << CTest.suite if $suite
|