mysql2postgres 0.3.3 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,18 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require File.expand_path '../test_helper', __dir__
4
-
5
- class PostgresDbWriterBaseTest < Test::Unit::TestCase
6
- class << self
7
- def startup
8
- seed_test_database
9
- @options = get_test_config_by_label :localmysql_to_db_convert_nothing
10
- end
11
- end
12
-
13
- def test_pg_connection
14
- assert_nothing_raised do
15
- mysql2postgres::PostgresDbWriter.new Tempfile.new('mysql2postgres_test_').path, @options
16
- end
17
- end
18
- end