0
0
Fork 0

E-mail preferences page

This commit is contained in:
Eugen Rochko 2016-10-14 02:28:49 +02:00
parent 9b195f5dd3
commit 7a6d95f70c
13 changed files with 107 additions and 14 deletions

View file

@ -0,0 +1,16 @@
require 'rails_helper'
RSpec.describe Settings::PreferencesController, type: :controller do
before do
sign_in Fabricate(:user), scope: :user
end
describe "GET #show" do
it "returns http success" do
get :show
expect(response).to have_http_status(:success)
end
end
end