def test_default_entry
@default_path = '/'
@default_mask_type = 'regexp'
@default_mask = '\.html?'
@default_virtual_host = 'bar'
@default_comment = 'Hello world.'
@EditProperties.document_position = '3'
assert_equal(1, @default_path_call)
assert_equal(1, @default_mask_type_call)
assert_equal(1, @default_mask_call)
assert_equal(1, @default_virtual_host_call)
assert_equal(1, @default_comment_call)
assert_equal('/', @EditProperties.doc_path)
assert_equal('regexp', @EditProperties.doc_mask_type_selected)
assert_equal('\.html?', @EditProperties.doc_mask)
assert_equal('bar', @EditProperties.virtual_host)
assert_equal('Hello world.', @EditProperties.comment)
end