Sha256: 248423711653322bae876dac1d538296e52b9025927b781d6d6c9654f77ab0cd

Contents?: true

Size: 1.68 KB

Versions: 6

Compression:

Stored size: 1.68 KB

Contents

shared_examples_for 'the button_to helper' do
  all_tests_pass_with 'the :context button_to option'
  all_tests_pass_with 'the :size button_to option'
  all_tests_pass_with 'the :layout button_to option'
  all_tests_pass_with 'the button wrapped in navbar'
  all_tests_pass_with 'the button wrapped in nav'
end

#--

shared_examples_for 'the :context button_to option' do
  Bh::Button.contexts.each do |context, context_class|
    specify %Q{set to :#{context}, adds the class "#{context_class}"} do
      html = %r{<(input|button).+class="btn #{context_class}"}
      expect(button_to: {context: context}).to generate html
    end
  end
end

shared_examples_for 'the :size button_to option' do
  Bh::Button.sizes.each do |size, size_class|
    specify %Q{set to :#{size}, adds the class "#{size_class}"} do
      html = %r{<(input|button).+class="btn btn-default #{size_class}"}
      expect(button_to: {size: size}).to generate html
    end
  end
end

shared_examples_for 'the :layout button_to option' do
  Bh::Button.layouts.each do |layout, layout_class|
    specify %Q{set to :#{layout}, adds the class "#{layout_class}"} do
      html = %r{<(input|button).+class="btn btn-default #{layout_class}"}
      expect(button_to: {layout: layout}).to generate html
    end
  end
end

shared_examples_for 'the button wrapped in navbar' do
  specify 'adds the "navbar-form" class to the form' do
    html = %r{^<form.+class="navbar-form"}
    bh.navbar { expect(button_to: {context: :default}).to generate html }
  end
end


shared_examples_for 'the button wrapped in nav' do
  specify 'surrounds the form in a <li> item' do
    html = %r{^<li><form.+?</form></li>}
    bh.nav { expect(:button_to).to generate html }
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
bh-1.3.6 spec/shared/button_to_helper.rb
bh-1.3.5 spec/shared/button_to_helper.rb
bh-1.3.4 spec/shared/button_to_helper.rb
bh-1.3.3 spec/shared/button_to_helper.rb
bh-1.3.1 spec/shared/button_to_helper.rb
bh-1.3.0 spec/shared/button_to_helper.rb