Sha256: 6bbb1b8b9f622e64a5658a5a743104b5c855d22b1c63114c8bbea6fbd728c893

Contents?: true

Size: 1.18 KB

Versions: 3

Compression:

Stored size: 1.18 KB

Contents

require 'test_helper'
require 'action_view/test_case'

class WickedPdfHelperTest < ActionView::TestCase
  if Rails::VERSION::MAJOR == 2
    test 'wicked_pdf_stylesheet_link_tag should inline the stylesheets passed in' do
      assert_equal "<style type='text/css'>/* Wicked styles */\n</style>",
                   wicked_pdf_stylesheet_link_tag('../../vendor/plugins/wicked_pdf/test/fixtures/wicked')
    end

    test 'wicked_pdf_image_tag should return the same as image_tag when passed a full path' do
      assert_equal image_tag("file:///#{Rails.root.join('public','images','pdf')}"),
                   wicked_pdf_image_tag('pdf')
    end

    test 'wicked_pdf_javascript_src_tag should return the same as javascript_src_tag when passed a full path' do
      assert_equal javascript_src_tag("file:///#{Rails.root.join('public','javascripts','pdf')}", {}),
                   wicked_pdf_javascript_src_tag('pdf')
    end

    test 'wicked_pdf_include_tag should return many wicked_pdf_javascript_src_tags' do
      assert_equal [wicked_pdf_javascript_src_tag('foo'), wicked_pdf_javascript_src_tag('bar')].join("\n"),
                   wicked_pdf_javascript_include_tag('foo', 'bar')
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wicked_pdf-0.9.2 test/wicked_pdf_helper_test.rb
wicked_pdf-0.9.1 test/wicked_pdf_helper_test.rb
wicked_pdf-0.9.0 test/wicked_pdf_helper_test.rb