Sha256: 5c16839c68848f0c3979744e36259f20b263c7fafad804b6ff0d32d973eb21c3

Contents?: true

Size: 578 Bytes

Versions: 5

Compression:

Stored size: 578 Bytes

Contents

require File.expand_path(File.join(File.dirname(__FILE__), "../spec_helper"))
require File.expand_path(File.join(File.dirname(__FILE__), "dbf_shared"))

describe DBF, "of type 30 (Visual FoxPro)" do
  before do
    @table = DBF::Table.new "#{DB_PATH}/dbase_30.dbf"
  end
  
  it_should_behave_like "DBF"
  
  it "should report the correct version number" do
    @table.version.should == "30"
  end
  
  it "should have a memo file" do
    @table.should have_memo_file
  end
  
  it "should report the correct memo type" do
    @table.memo_file_format.should == :fpt
  end
  
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
dbf-1.3.0 spec/functional/format_30_spec.rb
dbf-1.2.9 spec/functional/format_30_spec.rb
dbf-1.2.8 spec/functional/format_30_spec.rb
dbf-1.2.7 spec/functional/format_30_spec.rb
dbf-1.2.6 spec/functional/format_30_spec.rb