diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-03 17:11:54 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-03 17:12:13 +0200 |
commit | 9d59d7b463e7f31ceedf27775a7ee3e8e071b4a1 (patch) | |
tree | 6623a9795e3b6fc755b11caa132211f56acfed32 /spec/controllers | |
parent | a488b05726b2e93b5f66e93ef700a6bc32a3a029 (diff) |
Adding a block model and filter mentions from blocked users (fix #60)
Diffstat (limited to 'spec/controllers')
-rw-r--r-- | spec/controllers/about_controller_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/controllers/about_controller_spec.rb b/spec/controllers/about_controller_spec.rb index 54b552b6f..4fb58637a 100644 --- a/spec/controllers/about_controller_spec.rb +++ b/spec/controllers/about_controller_spec.rb @@ -2,8 +2,8 @@ require 'rails_helper' RSpec.describe AboutController, type: :controller do - describe "GET #index" do - it "returns http success" do + describe 'GET #index' do + it 'returns http success' do get :index expect(response).to have_http_status(:success) end |