Sha256: cf36f7fe1beb5c344a54a3e07fd82401841d192f1aa1ba29213b6235767c9494

Contents?: true

Size: 381 Bytes

Versions: 5

Compression:

Stored size: 381 Bytes

Contents

require 'spec_helper'

describe MetaTags::Configuration do
  it 'should be returned by MetaTags.config' do
    expect(MetaTags.config).to be_instance_of(MetaTags::Configuration)
  end

  it 'should be yielded by MetaTags.configure' do
    MetaTags.configure do |c|
      expect(c).to be_instance_of(MetaTags::Configuration)
      expect(c).to be(MetaTags.config)
    end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

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