From 8a159e65ed76d37cf31d8eca907411466d6d450e Mon Sep 17 00:00:00 2001 From: kou Date: Tue, 7 Dec 2004 15:27:01 +0000 Subject: * test/rss/test_version.rb: added version check test. [ruby-dev:25053] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7492 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/rss/test_version.rb | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test/rss/test_version.rb (limited to 'test/rss') 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 -- cgit