Sha256: 18a3ca74773064d6db1b958e6046f83f60976f58e76cc463c1c3de9ab9a175ab

Contents?: true

Size: 1.03 KB

Versions: 5

Compression:

Stored size: 1.03 KB

Contents

require 'spec_helper'

describe MetaTags::ViewHelper, 'module' do
  subject { ActionView::Base.new }

  it 'should be mixed into ActionView::Base' do
    expect(ActionView::Base.included_modules).to include(MetaTags::ViewHelper)
  end

  it 'should respond to "title" helper' do
    expect(subject).to respond_to(:title)
  end

  it 'should respond to "description" helper' do
    expect(subject).to respond_to(:description)
  end

  it 'should respond to "keywords" helper' do
    expect(subject).to respond_to(:keywords)
  end

  it 'should respond to "noindex" helper' do
    expect(subject).to respond_to(:noindex)
  end

  it 'should respond to "nofollow" helper' do
    expect(subject).to respond_to(:nofollow)
  end

  it 'should respond to "set_meta_tags" helper' do
    expect(subject).to respond_to(:set_meta_tags)
  end

  it 'should respond to "display_meta_tags" helper' do
    expect(subject).to respond_to(:display_meta_tags)
  end

  it 'should respond to "display_title" helper' do
    expect(subject).to respond_to(:display_title)
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
meta-tags-2.2.0 spec/view_helper/module_spec.rb
meta_tags-rails-1.1.1 spec/view_helper/module_spec.rb
meta_tags-rails-1.1.0 spec/view_helper/module_spec.rb
meta_tags-rails-1.0.0 spec/view_helper/module_spec.rb
meta-tags-2.1.0 spec/view_helper/module_spec.rb