Sha256: 379348f883f24920dae334cf114ec0b12c1f7e95aee3e2377cbf411220adcb39

Contents?: true

Size: 645 Bytes

Versions: 36

Compression:

Stored size: 645 Bytes

Contents

#####################################################################
# tc_filesystem.rb
#
# Test case for the Windows::FileSystem module.
#####################################################################
require 'windows/filesystem'
require 'test/unit'

class FileSystemFoo
   include Windows::FileSystem
end

class TC_Windows_FileSystem < Test::Unit::TestCase
  
   def setup
      @foo = FileSystemFoo.new
   end
   
   def test_method_constants
      assert_not_nil(FileSystemFoo::GetDiskFreeSpace)
      assert_not_nil(FileSystemFoo::GetDiskFreeSpaceEx)
   end
   
   def teardown
      @foo = nil
   end
end

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
windows-pr-1.2.2 test/tc_filesystem.rb
windows-pr-1.2.1 test/tc_filesystem.rb
windows-pr-1.2.0 test/tc_filesystem.rb
windows-pr-1.1.2 test/tc_filesystem.rb
windows-pr-1.1.1 test/tc_filesystem.rb
windows-pr-1.1.0 test/tc_filesystem.rb
windows-pr-1.0.9 test/tc_filesystem.rb
windows-pr-1.0.8 test/tc_filesystem.rb
windows-pr-1.0.7 test/tc_filesystem.rb
windows-pr-1.0.6 test/tc_filesystem.rb
windows-pr-0.8.0 test/tc_filesystem.rb
windows-pr-0.8.3 test/tc_filesystem.rb
windows-pr-0.8.2 test/tc_filesystem.rb
windows-pr-0.8.4 test/tc_filesystem.rb
windows-pr-0.8.6 test/tc_filesystem.rb
windows-pr-0.8.7 test/tc_filesystem.rb
windows-pr-0.8.5 test/tc_filesystem.rb
windows-pr-0.7.4 test/tc_filesystem.rb
windows-pr-0.8.1 test/tc_filesystem.rb
windows-pr-0.7.3 test/tc_filesystem.rb