Browse Source

Helper cleanup (#1348)

* Remove unused helper files

* Add coverage for application helper

* Add coverage for StreamEntriesHelper #display_name
closed-social-glitch-2
Matt Jankowski 7 years ago
committed by Eugen
parent
commit
ea6c930c04
14 changed files with 26 additions and 56 deletions
  1. +0
    -4
      app/helpers/about_helper.rb
  2. +0
    -4
      app/helpers/admin/domain_blocks_helper.rb
  3. +0
    -4
      app/helpers/admin/pubsubhubbub_helper.rb
  4. +0
    -4
      app/helpers/authorize_follow_helper.rb
  5. +0
    -4
      app/helpers/tags_helper.rb
  6. +0
    -4
      app/helpers/xrd_helper.rb
  7. +0
    -5
      spec/helpers/about_helper_spec.rb
  8. +0
    -5
      spec/helpers/admin/domain_blocks_helper_spec.rb
  9. +0
    -5
      spec/helpers/admin/pubsubhubbub_helper_spec.rb
  10. +15
    -1
      spec/helpers/application_helper_spec.rb
  11. +0
    -5
      spec/helpers/authorize_follow_helper_spec.rb
  12. +11
    -1
      spec/helpers/stream_entries_helper_spec.rb
  13. +0
    -5
      spec/helpers/tags_helper_spec.rb
  14. +0
    -5
      spec/helpers/xrd_helper_spec.rb

+ 0
- 4
app/helpers/about_helper.rb View File

@ -1,4 +0,0 @@
# frozen_string_literal: true
module AboutHelper
end

+ 0
- 4
app/helpers/admin/domain_blocks_helper.rb View File

@ -1,4 +0,0 @@
# frozen_string_literal: true
module Admin::DomainBlocksHelper
end

+ 0
- 4
app/helpers/admin/pubsubhubbub_helper.rb View File

@ -1,4 +0,0 @@
# frozen_string_literal: true
module Admin::PubsubhubbubHelper
end

+ 0
- 4
app/helpers/authorize_follow_helper.rb View File

@ -1,4 +0,0 @@
# frozen_string_literal: true
module AuthorizeFollowHelper
end

+ 0
- 4
app/helpers/tags_helper.rb View File

@ -1,4 +0,0 @@
# frozen_string_literal: true
module TagsHelper
end

+ 0
- 4
app/helpers/xrd_helper.rb View File

@ -1,4 +0,0 @@
# frozen_string_literal: true
module XrdHelper
end

+ 0
- 5
spec/helpers/about_helper_spec.rb View File

@ -1,5 +0,0 @@
require 'rails_helper'
RSpec.describe AboutHelper, type: :helper do
end

+ 0
- 5
spec/helpers/admin/domain_blocks_helper_spec.rb View File

@ -1,5 +0,0 @@
require 'rails_helper'
RSpec.describe Admin::DomainBlocksHelper, type: :helper do
end

+ 0
- 5
spec/helpers/admin/pubsubhubbub_helper_spec.rb View File

@ -1,5 +0,0 @@
require 'rails_helper'
RSpec.describe Admin::PubsubhubbubHelper, type: :helper do
end

+ 15
- 1
spec/helpers/application_helper_spec.rb View File

@ -1,5 +1,19 @@
require 'rails_helper'
RSpec.describe ApplicationHelper, type: :helper do
describe ApplicationHelper do
describe 'active_nav_class' do
it 'returns active when on the current page' do
allow(helper).to receive(:current_page?).and_return(true)
result = helper.active_nav_class("/test")
expect(result).to eq "active"
end
it 'returns empty string when not on current page' do
allow(helper).to receive(:current_page?).and_return(false)
result = helper.active_nav_class("/test")
expect(result).to eq ""
end
end
end

+ 0
- 5
spec/helpers/authorize_follow_helper_spec.rb View File

@ -1,5 +0,0 @@
require 'rails_helper'
RSpec.describe AuthorizeFollowHelper, type: :helper do
end

+ 11
- 1
spec/helpers/stream_entries_helper_spec.rb View File

@ -2,7 +2,17 @@ require 'rails_helper'
RSpec.describe StreamEntriesHelper, type: :helper do
describe '#display_name' do
pending
it 'uses the display name when it exists' do
account = Account.new(display_name: "Display", username: "Username")
expect(helper.display_name(account)).to eq "Display"
end
it 'uses the username when display name is nil' do
account = Account.new(display_name: nil, username: "Username")
expect(helper.display_name(account)).to eq "Username"
end
end
describe '#avatar_for_status_url' do

+ 0
- 5
spec/helpers/tags_helper_spec.rb View File

@ -1,5 +0,0 @@
require 'rails_helper'
RSpec.describe TagsHelper, type: :helper do
end

+ 0
- 5
spec/helpers/xrd_helper_spec.rb View File

@ -1,5 +0,0 @@
require 'rails_helper'
RSpec.describe XrdHelper, type: :helper do
end

Loading…
Cancel
Save