Sha256: 636ea596cbb1559afae3b9e095853b58e399ff12f92bf1cdd58b0b6e61c438e8

Contents?: true

Size: 579 Bytes

Versions: 1

Compression:

Stored size: 579 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.1', Sys::Admin::VERSION)
   end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sys-admin-1.5.1 test/test_sys_admin.rb