Ensuring that the geo spatial adapters are successfully wired up and working with base import functionality.

[#47]
This commit is contained in:
Zach Dennis 2012-12-14 10:29:04 -05:00
parent eec20355e5
commit 6697e2b4db
14 changed files with 65 additions and 22 deletions

View file

@ -1,20 +1,4 @@
require File.expand_path('../../test_helper', __FILE__)
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
require File.expand_path(File.dirname(__FILE__) + '/../support/postgresql/import_examples')
describe "#supports_imports?" do
it "should support import" do
assert ActiveRecord::Base.supports_import?
end
end
describe "#import" do
it "should import with a single insert" do
# see ActiveRecord::ConnectionAdapters::AbstractAdapter test for more specifics
assert_difference "Topic.count", +10 do
result = Topic.import Build(3, :topics)
assert_equal 1, result.num_inserts
result = Topic.import Build(7, :topics)
assert_equal 1, result.num_inserts
end
end
end
should_support_postgresql_import_functionality