about summary refs log tree commit diff
path: root/spec/controllers/account_unfollow_controller_spec.rb
diff options
context:
space:
mode:
authorMatt Jankowski <mjankowski@thoughtbot.com>2017-04-19 07:52:37 -0400
committerEugen <eugen@zeonfederated.com>2017-04-19 13:52:37 +0200
commit8bac0350d16cb8e2770c089c91d71f8038404de5 (patch)
treef5b381319fde16fbe393dbae2cba1691f17aea9a /spec/controllers/account_unfollow_controller_spec.rb
parentc0b30c56db36d0064ee7618976ab4e25f7a675fd (diff)
Restful refactor of accounts/ routes (#2133)
* Add routing specs for accounts followers and following actions

* Use more restful route naming for public account follow pages

Moves two actions:
- accounts#followers to accounts/follower_accounts#index
- accounts#following to accounts/following_accounts#index

Adds routing spec to ensure prior URLs are preserved.
Diffstat (limited to 'spec/controllers/account_unfollow_controller_spec.rb')
-rw-r--r--spec/controllers/account_unfollow_controller_spec.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/spec/controllers/account_unfollow_controller_spec.rb b/spec/controllers/account_unfollow_controller_spec.rb
new file mode 100644
index 000000000..1f28bf4ab
--- /dev/null
+++ b/spec/controllers/account_unfollow_controller_spec.rb
@@ -0,0 +1,24 @@
+require 'rails_helper'
+
+describe AccountUnfollowController do
+  render_views
+  let(:user) { Fabricate(:user) }
+  let(:alice) { Fabricate(:account, username: 'alice') }
+
+  describe 'POST #create' do
+    before do
+      sign_in(user)
+    end
+
+    it 'redirects to account path' do
+      service = double
+      allow(UnfollowService).to receive(:new).and_return(service)
+      allow(service).to receive(:call)
+
+      post :create, params: { account_username: alice.username }
+
+      expect(service).to have_received(:call).with(user.account, alice)
+      expect(response).to redirect_to(account_path(alice))
+    end
+  end
+end