17 lines
423 B
Ruby
17 lines
423 B
Ruby
# To change this license header, choose License Headers in Project Properties.
|
|
# To change this template file, choose Tools | Templates
|
|
# and open the template in the editor.
|
|
|
|
$:.unshift File.join(File.dirname(__FILE__),'..','lib')
|
|
|
|
require 'test/unit'
|
|
require 'dmsf_file'
|
|
|
|
class TestDmsfFile < Test::Unit::TestCase
|
|
def test_foo
|
|
#TODO: Write test
|
|
flunk "TODO: Write test"
|
|
# assert_equal("foo", bar)
|
|
end
|
|
end
|