Skip to content

Commit

Permalink
fix spec
Browse files Browse the repository at this point in the history
  • Loading branch information
will committed Mar 21, 2011
1 parent 9d5cb8b commit a29a60f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pg_spec.rb
@@ -1,6 +1,6 @@
require 'rubygems'
require 'rspec'
require './init'
require './pg'

include Heroku::Command

Expand Down Expand Up @@ -89,9 +89,9 @@

it 'returns all with Resolver.all' do
Pg::Resolver.all(config).should =~ [
{:name => 'SHARED_DATABASE', :url => 'postgres://shared', :default => false},
{:name => 'PERIWINKLE', :url => 'postgres://pari', :default => false},
{:name => 'RED', :url => 'postgres://red', :default => true}
{:name => 'SHARED_DATABASE', :pretty_name => 'SHARED_DATABASE', :url => 'postgres://shared', :default => false},
{:name => 'PERIWINKLE', :pretty_name => 'PERIWINKLE', :url => 'postgres://pari', :default => false},
{:name => 'RED', :pretty_name => 'RED (DATABASE_URL)', :url => 'postgres://red', :default => true}
]
end
end
Expand Down

0 comments on commit a29a60f

Please sign in to comment.