mysql2postgres 0.3.3 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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