Sha256: 6e0d2a16fc48f2d60109d6e2a7c5250ec96f6a8021c5e0d7a2ce9b16c836c63d
Contents?: true
Size: 573 Bytes
Versions: 2
Compression:
Stored size: 573 Bytes
Contents
############################################################################### # test_sys_admin.rb # # This exists mostly for the sake of the gemspec, so that it calls the right # test suite based on the platform. ############################################################################### require 'rubygems' gem 'test-unit' require 'test/unit' if File::ALT_SEPARATOR require 'test_sys_admin_windows' else require 'test_sys_admin_unix' end class TC_Sys_Admin_All < Test::Unit::TestCase def test_version assert_equal('1.5.3', Sys::Admin::VERSION) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sys-admin-1.5.3-x86-mingw32 | test/test_sys_admin.rb |
sys-admin-1.5.3 | test/test_sys_admin.rb |