features/support/postgres.rb in rspec-sequel-0.0.1 vs features/support/postgres.rb in rspec-sequel-0.0.2
- old
+ new
@@ -1,21 +1 @@
-require 'sequel'
-
-module RSpec::Sequel::Test
-
- def self.postgres
- @pg_db ||= connect_to_postgres
- end
-
- private
- DEFAULT_TEST_DATABASE = 'postgres:///rspec-sequel-test'
-
- def self.connect_to_postgres
- test_database = unless ENV['TEST_DATABASE']
- STDERR.puts "TEST_DATABASE environment variable not found, defaulting to #{DEFAULT_TEST_DATABASE}"
- DEFAULT_TEST_DATABASE
- end
-
- Sequel::connect test_database
- end
-
-end
\ No newline at end of file