# File test/backup/tc_pascal_disks.rb, line 10
        def test_other_dsk_types
                dsk=DSK.new()
                assert(dsk.file_system!=:pascal,"empty DSK should not be Pascal format")

                dskname=File.dirname(__FILE__)+"//dos33_with_adt.dsk"
                dsk=DSK.read(dskname)
                assert(dsk.file_system!=:pascal,"#{dskname} should not be Pascal format")

                dskname=File.dirname(__FILE__)+"//nadol.dsk"
                dsk=DSK.read(dskname)
                assert(dsk.file_system!=:pascal,"#{dskname} should not be Pascal format")

        end