about summary refs log tree commit diff
path: root/spec/helpers/admin/account_moderation_notes_helper_spec.rb
diff options
context:
space:
mode:
authorysksn <bluewhale1982@gmail.com>2018-12-08 00:39:20 +0900
committerEugen Rochko <eugen@zeonfederated.com>2018-12-07 16:39:20 +0100
commit88b3eed16f9ecabfc81b81d1af3a2e10b0f68517 (patch)
tree89b03e838a3b4a7bea0e4c629e74d7d9d556380b /spec/helpers/admin/account_moderation_notes_helper_spec.rb
parent57bb62d5cfe1b269ccfc82c0d2fd73fbf1252a3d (diff)
Add specs for Admin::AccountModerationNotesHelper (#9455)
Diffstat (limited to 'spec/helpers/admin/account_moderation_notes_helper_spec.rb')
-rw-r--r--spec/helpers/admin/account_moderation_notes_helper_spec.rb62
1 files changed, 51 insertions, 11 deletions
diff --git a/spec/helpers/admin/account_moderation_notes_helper_spec.rb b/spec/helpers/admin/account_moderation_notes_helper_spec.rb
index 01b60c851..c07f6c4b8 100644
--- a/spec/helpers/admin/account_moderation_notes_helper_spec.rb
+++ b/spec/helpers/admin/account_moderation_notes_helper_spec.rb
@@ -1,15 +1,55 @@
+# frozen_string_literal: true
+
 require 'rails_helper'
 
-# Specs in this file have access to a helper object that includes
-# the Admin::AccountModerationNotesHelper. For example:
-#
-# describe Admin::AccountModerationNotesHelper do
-#   describe "string concat" do
-#     it "concats two strings with spaces" do
-#       expect(helper.concat_strings("this","that")).to eq("this that")
-#     end
-#   end
-# end
 RSpec.describe Admin::AccountModerationNotesHelper, type: :helper do
-  pending "add some examples to (or delete) #{__FILE__}"
+  include StreamEntriesHelper
+
+  describe '#admin_account_link_to' do
+    context 'account is nil' do
+      let(:account) { nil }
+
+      it 'returns nil' do
+        expect(helper.admin_account_link_to(account)).to be_nil
+      end
+    end
+
+    context 'with account' do
+      let(:account) { Fabricate(:account) }
+
+      it 'calls #link_to' do
+        expect(helper).to receive(:link_to).with(
+          admin_account_path(account.id),
+          class: name_tag_classes(account),
+          title: account.acct
+        )
+
+        helper.admin_account_link_to(account)
+      end
+    end
+  end
+
+  describe '#admin_account_inline_link_to' do
+    context 'account is nil' do
+      let(:account) { nil }
+
+      it 'returns nil' do
+        expect(helper.admin_account_inline_link_to(account)).to be_nil
+      end
+    end
+
+    context 'with account' do
+      let(:account) { Fabricate(:account) }
+
+      it 'calls #link_to' do
+        expect(helper).to receive(:link_to).with(
+          admin_account_path(account.id),
+          class: name_tag_classes(account, true),
+          title: account.acct
+        )
+
+        helper.admin_account_inline_link_to(account)
+      end
+    end
+  end
 end