diff options
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | test/rss/test_version.rb | 9 |
2 files changed, 14 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Wed Dec 8 00:25:07 2004 Kouhei Sutou <kou@cozmixng.org> + + * test/rss/test_version.rb: added version check test. + [ruby-dev:25053] + Tue Dec 7 15:40:38 2004 Tanaka Akira <akr@m17n.org> * io.c (io_fwrite): avoid context switch before writing to stderr. diff --git a/test/rss/test_version.rb b/test/rss/test_version.rb new file mode 100644 index 000000000..c2c7bdab2 --- /dev/null +++ b/test/rss/test_version.rb @@ -0,0 +1,9 @@ +require "rss-testcase" + +module RSS + class TestVersion < TestCase + def test_version + assert_equal("0.1.2", ::RSS::VERSION) + end + end +end |
