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.15 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.4.36 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.5.14 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.4.35 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.5.13 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.4.34 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.5.12 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.4.33 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.5.11 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.5.10 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.4.32 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.5.9 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.4.31 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.5.8 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.4.30 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.5.7 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.4.29 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.5.6 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.4.28 test/models/workarea/catalog/customizations_test.rb
workarea-core-3.5.5 test/models/workarea/catalog/customizations_test.rb