Sha256: e2edc003bec7d2ea7d419709cf1d3c6e513cf6b607653ccdab79fda1bcb6230b

Contents?: true

Size: 607 Bytes

Versions: 7

Compression:

Stored size: 607 Bytes

Contents

module Inferno
  module Web
    module Serializers
      class TestGroup < Serializer
        identifier :id

        field :title
        field :description
        field :test_count
        field :run_as_group?, name: :run_as_group
        field :user_runnable?, name: :user_runnable

        association :groups, name: :test_groups, blueprint: TestGroup
        association :tests, blueprint: Test
        field :input_definitions, name: :inputs, extractor: HashValueExtractor, blueprint: Input
        field :output_definitions, name: :outputs, extractor: HashValueExtractor
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
inferno_core-0.1.0 lib/inferno/apps/web/serializers/test_group.rb
inferno_core-0.1.0.pre lib/inferno/apps/web/serializers/test_group.rb
inferno_core-0.0.8 lib/inferno/apps/web/serializers/test_group.rb
inferno_core-0.0.8.pre2 lib/inferno/apps/web/serializers/test_group.rb
inferno_core-0.0.8.pre lib/inferno/apps/web/serializers/test_group.rb
inferno_core-0.0.7 lib/inferno/apps/web/serializers/test_group.rb
inferno_core-0.0.6 lib/inferno/apps/web/serializers/test_group.rb