Sha256: 910ba9092407ca4a7b8f751a748cbbf881e9f9ea679d9c698d719558292d95e6

Contents?: true

Size: 998 Bytes

Versions: 9

Compression:

Stored size: 998 Bytes

Contents

# frozen_string_literal: true

require 'spec_helper'

RSpec.describe CKEditor5::Rails::Editor::PropsPlugin do
  describe '#to_h' do
    it 'generates hash for standard plugin' do
      plugin = described_class.new(:Bold)
      expect(plugin.to_h).to include(
        type: :external,
        import_name: 'ckeditor5',
        import_as: :Bold
      )
    end

    it 'generates hash for premium plugin' do
      plugin = described_class.new(:Bold, premium: true)
      expect(plugin.to_h).to include(
        type: :external,
        import_name: 'ckeditor5-premium-features',
        import_as: :Bold
      )
    end

    it 'handles custom import metadata' do
      plugin = described_class.new(:Custom,
                                   import_name: 'custom-module',
                                   window_name: 'CustomPlugin')
      expect(plugin.to_h).to include(
        type: :external,
        import_name: 'custom-module',
        window_name: 'CustomPlugin'
      )
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
ckeditor5-1.19.5 spec/lib/ckeditor5/rails/editor/props_plugin_spec.rb
ckeditor5-1.19.4 spec/lib/ckeditor5/rails/editor/props_plugin_spec.rb
ckeditor5-1.19.3 spec/lib/ckeditor5/rails/editor/props_plugin_spec.rb
ckeditor5-1.19.2 spec/lib/ckeditor5/rails/editor/props_plugin_spec.rb
ckeditor5-1.19.1 spec/lib/ckeditor5/rails/editor/props_plugin_spec.rb
ckeditor5-1.19.0 spec/lib/ckeditor5/rails/editor/props_plugin_spec.rb
ckeditor5-1.18.3 spec/lib/ckeditor5/rails/editor/props_plugin_spec.rb
ckeditor5-1.18.1 spec/lib/ckeditor5/rails/editor/props_plugin_spec.rb
ckeditor5-1.18.0 spec/lib/ckeditor5/rails/editor/props_plugin_spec.rb