This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/spec/views/omniauth_callbacks/failure.html.erb_spec.rb
2022-07-28 10:27:38 +08:00

14 lines
370 B
Ruby

# frozen_string_literal: true
RSpec.describe "users/omniauth_callbacks/failure.html.erb" do
before do
flash[:error] = I18n.t("login.omniauth_error", strategy: 'test')
end
it "renders the failure page" do
render template: 'users/omniauth_callbacks/failure'
expect(rendered).to match I18n.t("login.omniauth_error.generic", strategy: 'test')
end
end