cirandas.net

ref: master

test/unit/modal_helper_test.rb


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
require_relative '../test_helper'

class ModalHelperTest < ActiveSupport::TestCase

  include ModalHelper

  should 'provide the needed files' do
    assert File.exists?(Rails.root.join('public', 'stylesheets', 'vendor', 'colorbox.css')), 'colorbox.css expected to be in public/stylesheets, but not found'
    assert File.exists?(Rails.root.join('public', 'javascripts', 'vendor', 'jquery.colorbox-min.js')), 'jquery.colorbox-min.js expected to be in public/javascripts, but not found'
  end

  should 'provide link to close modal' do
    expects(:button).with(:close, 'text', '#', has_entries({ :class => 'modal-toggle modal-close', :id => 'my-id' })).returns('[close-modal]')

    assert_equal '[close-modal]', modal_close_button('text', :id => 'my-id')
  end

  should 'merge existing :class option in modal_close_button' do
    expects(:button).with(:close, 'text', '#', has_entries({ :class => 'modal-toggle modal-close my-class', :id => 'my-id' })).returns('[close-modal]')

    assert_equal '[close-modal]', modal_close_button('text', :class => 'my-class', :id => 'my-id' )
  end

  should 'provide modal_button' do
    expects(:button).with('type', 'label', { :action => 'popup'}, has_entries({ :class => 'modal-toggle' })).returns('[button]')

    assert_equal '[button]', modal_button('type', 'label', { :action => 'popup'})
  end

  should 'provide modal_icon_button' do
    expects(:icon_button).with('type', 'label', { :action => 'popup'}, has_entries({ :class => 'modal-toggle' })).returns('[button]')

    assert_equal '[button]', modal_icon_button('type', 'label', { :action => 'popup'})
  end

end