Sha256: 3a386e77b920710b4936b9a8ead63d7ddda47ddc0c2d02573e507a8f583cde00

Contents?: true

Size: 1012 Bytes

Versions: 55

Compression:

Stored size: 1012 Bytes

Contents

require 'test_helper'

module Workarea
  module Catalog
    class CustomizationsTest < TestCase
      class FooCustomizations < Workarea::Catalog::Customizations
        customized_fields :foo, :bar, :a_test, :title_graphic, :category_id, :screaming_snake_id
      end

      def test_handles_attributes_with_a_space_in_them
        customizations = FooCustomizations.new(
          '1234',
          'A Test' => 'Hello, World',
          'titleGraphic' => 'gritty.jpg',
          'category_id' => 'CAT',
          'SCREAMING_SNAKE_ID' => '🐍'
        )

        assert_equal('Hello, World', customizations.a_test)
        assert_equal('gritty.jpg', customizations.title_graphic)
        assert_equal('CAT', customizations.category_id)
        assert_equal('🐍', customizations.screaming_snake_id)
      end

      def test_to_h
        customizations = FooCustomizations.new('1234', foo: 'test', bar: '')
        assert_equal({ foo: 'test' }, customizations.to_h.symbolize_keys)
      end
    end
  end
end

Version data entries

55 entries across 55 versions & 1 rubygems

Version Path
workarea-core-3.5.27 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.5.26 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.4.45 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.5.25 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.5.23 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.4.44 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.5.22 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.4.43 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.5.21 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.4.42 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.5.20 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.4.41 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.5.19 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.4.40 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.5.18 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.4.39 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.5.17 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.4.38 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.5.16 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.4.37 test/models/workarea/catalog/customizations_test.rb