Sha256: 9dd23e88faa870dc73c042d7ed0fe0a9182587627730b98363baaf63f87b84e5
Contents?: true
Size: 463 Bytes
Versions: 12
Compression:
Stored size: 463 Bytes
Contents
require 'spec_helper' describe ConfigParser do it "parse my test database.yml file" do config = ConfigParser.rails("spec/database.yml", "test") config.should == { :dbname => "pg_migrate_test", :user => "postgres", :password => "postgres", :host => "localhost", :port => 5432 } end it "run single migration" do config = ConfigParser.rails("spec/database.yml", "test") end end
Version data entries
12 entries across 12 versions & 1 rubygems