Sha256: de9f3f9174261440ec57dd8ca50e80b57e513c31b9cfb0bd4742a77ba3da32a2

Contents?: true

Size: 655 Bytes

Versions: 1

Compression:

Stored size: 655 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 '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
  test "version is set to expected value" do
    assert_equal('1.7.5', Sys::Admin::VERSION)
  end

  test "version constant is frozen" do
    assert_true(Sys::Admin::VERSION.frozen?)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

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