about summary refs log tree commit diff
path: root/spec/views/accounts
diff options
context:
space:
mode:
authorMatt Jankowski <mjankowski@thoughtbot.com>2017-05-04 17:45:18 -0400
committerEugen Rochko <eugen@zeonfederated.com>2017-05-04 23:45:18 +0200
commitf9d398e8fb2fe17694949ec1654df60298b0004b (patch)
treed5324a858a3512b93f1195cd82e4de1a9882b52a /spec/views/accounts
parent74c8ca699c37ebdb0e3c6f0648f9f90a4f1f8f89 (diff)
Remove the react-rails gem (#2801)
* Remove react-rails gem

* Fix broken view spec
Diffstat (limited to 'spec/views/accounts')
-rw-r--r--spec/views/accounts/show.html.haml_spec.rb42
1 files changed, 0 insertions, 42 deletions
diff --git a/spec/views/accounts/show.html.haml_spec.rb b/spec/views/accounts/show.html.haml_spec.rb
deleted file mode 100644
index e9f6493b1..000000000
--- a/spec/views/accounts/show.html.haml_spec.rb
+++ /dev/null
@@ -1,42 +0,0 @@
-require 'rails_helper'
-
-describe 'accounts/show.html.haml' do
-  before do
-    allow(view).to receive(:show_landing_strip?).and_return(true)
-  end
-
-  it 'has an h-feed with correct number of h-entry objects in it' do
-    alice   =  Fabricate(:account, username: 'alice', display_name: 'Alice')
-    status  =  Fabricate(:status, account: alice, text: 'Hello World')
-    status2 =  Fabricate(:status, account: alice, text: 'Hello World Again')
-    status3 =  Fabricate(:status, account: alice, text: 'Are You Still There World?')
-
-    assign(:account, alice)
-    assign(:statuses, alice.statuses)
-    assign(:stream_entry, status.stream_entry)
-    assign(:type, status.stream_entry.activity_type.downcase)
-
-    render
-
-    expect(Nokogiri::HTML(rendered).search('.h-feed .h-entry').size).to eq 3
-  end
-
-  it 'has valid opengraph tags' do
-    alice   =  Fabricate(:account, username: 'alice', display_name: 'Alice')
-    status  =  Fabricate(:status, account: alice, text: 'Hello World')
-
-    assign(:account, alice)
-    assign(:statuses, alice.statuses)
-    assign(:stream_entry, status.stream_entry)
-    assign(:type, status.stream_entry.activity_type.downcase)
-
-    render
-
-    header_tags = view.content_for(:header_tags)
-
-    expect(header_tags).to match(%r{<meta content='.+' property='og:title'>})
-    expect(header_tags).to match(%r{<meta content='profile' property='og:type'>})
-    expect(header_tags).to match(%r{<meta content='.+' property='og:image'>})
-    expect(header_tags).to match(%r{<meta content='http://.+' property='og:url'>})
-  end
-end