Merge pull request #6895 from cmrd-senya/services-spec-fixup

Fix up nodeinfo tests
This commit is contained in:
Jonne Haß 2016-06-28 00:15:08 +02:00 committed by GitHub
commit 18fc98d3aa
2 changed files with 3 additions and 3 deletions

View file

@ -31,7 +31,7 @@ describe NodeInfoPresenter do
},
"services" => {
"inbound" => [],
"outbound" => ["facebook"]
"outbound" => AppConfig.configured_services.map(&:to_s)
},
"openRegistrations" => AppConfig.settings.enable_registrations?,
"usage" => {

View file

@ -25,7 +25,7 @@ describe StatisticsPresenter do
"network" => "Diaspora",
"version" => AppConfig.version_string,
"registrations_open" => AppConfig.settings.enable_registrations?,
"services" => ["facebook"]
"services" => AppConfig.configured_services.map(&:to_s)
)
end
@ -104,7 +104,7 @@ describe StatisticsPresenter do
"active_users_monthly" => User.monthly_actives.count,
"local_posts" => @presenter.local_posts,
"local_comments" => @presenter.local_comments,
"services" => ["facebook"]
"services" => AppConfig.configured_services.map(&:to_s)
)
end
end