Sha256: 7aade88f157ac4b65da3f5ae3fea913e753ff486da93ecd77bd6aa1020d87ca2

Contents?: true

Size: 1.61 KB

Versions: 9

Compression:

Stored size: 1.61 KB

Contents

require 'rails_helper'

RSpec.describe MailManager::LayoutHelper, :type => :helper do
  describe "#title" do
    it "translates what you give it and returns when translation exists" do
      expect(helper.title("mail_manager/mailing.edit.title", subject: "Bonkers", 
        default: "Edit my 'Bonkers'")
      ).to eq("<h1>Edit Bonkers</h1>")
      and_it "then returns the same thing ... without the h1 tags on the subsequent call" do
        expect(helper.title).to eq "Edit Bonkers"
      end
    end
    it "translates to your default when your translation name doesn't exist" do
      expect(helper.title("my.nonsense.title", subject: "Bonkers", 
        default: "Edit my 'Bonkers'")
      ).to eq("<h1>Edit my 'Bonkers'</h1>")
      and_it "then returns the same thing ... without the h1 tags on the subsequent call" do
        expect(helper.title).to eq "Edit my 'Bonkers'"
      end
    end
  end
  describe "#site_url" do
    it "returns the mail manager's site_url setting as a helper" do
      expect{helper.site_url}.not_to raise_error
      expect(helper.site_url).to eq(MailManager.site_url)
    end
  end
  describe "#show_title?" do
    it "returns the mail manager's show_title setting as a helper" do
      expect{helper.show_title?}.not_to raise_error
      expect(helper.show_title?).to eq(MailManager.show_title)
    end
  end
  describe "#use_show_for_resources?" do
    it "returns the mail manager's use_show_for_resources setting as a helper" do
      expect{helper.use_show_for_resources?}.not_to raise_error
      expect(helper.use_show_for_resources?).to eq(MailManager.use_show_for_resources)
    end
  end
  
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
mail_manager-3.2.25.1 spec/test_app/spec/helpers/mail_manager/layout_helper_spec.rb
mail_manager-3.2.22.0 spec/test_app/spec/helpers/mail_manager/layout_helper_spec.rb
mail_manager-3.2.7 spec/test_app/spec/helpers/mail_manager/layout_helper_spec.rb
mail_manager-3.2.6 spec/test_app/spec/helpers/mail_manager/layout_helper_spec.rb
mail_manager-3.2.5 spec/test_app/spec/helpers/mail_manager/layout_helper_spec.rb
mail_manager-3.2.4 spec/test_app/spec/helpers/mail_manager/layout_helper_spec.rb
mail_manager-3.2.2 spec/test_app/spec/helpers/mail_manager/layout_helper_spec.rb
mail_manager-3.2.1 spec/test_app/spec/helpers/mail_manager/layout_helper_spec.rb
mail_manager-3.2.0 spec/test_app/spec/helpers/mail_manager/layout_helper_spec.rb