diaspora/spec/controllers/help_controller_spec.rb

14 lines
299 B
Ruby

describe HelpController, type: :controller do
describe "#faq" do
it "succeeds" do
get :faq
expect(response).to be_success
end
it "fails on mobile" do
expect {
get :faq, format: :mobile
}.to raise_error ActionController::UnknownFormat
end
end
end