* Update unsubscribed page's copy and css * Create view spec for email_subscriptions/unsubscribe * Update unsubscribed's page copy * Prevent search-engine crawlers
9 lines
267 B
Ruby
9 lines
267 B
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe "email_subscriptions/unsubscribe.html.erb", type: :view do
|
|
it "works" do
|
|
assign(:email_type, "DEV digest emails")
|
|
render
|
|
Approvals.verify(rendered, name: "email_subscriptions/unsubscribe", format: :html)
|
|
end
|
|
end
|