Sha256: 6ecfa3a085ee5489a32d810a3eec479ed8987454e39251eb305ed5fa26fbdd45

Contents?: true

Size: 455 Bytes

Versions: 31

Compression:

Stored size: 455 Bytes

Contents

module Inferno
  module Web
    module Serializers
      class TestRun < Serializer
        identifier :id
        field :test_session_id

        field :status
        field :test_count

        field :test_group_id, if: :field_present?
        field :test_suite_id, if: :field_present?
        field :test_id, if: :field_present?

        association :results, blueprint: Result
        association :inputs, blueprint: Input
      end
    end
  end
end

Version data entries

31 entries across 31 versions & 1 rubygems

Version Path
inferno_core-0.1.1 lib/inferno/apps/web/serializers/test_run.rb
inferno_core-0.1.1.pre lib/inferno/apps/web/serializers/test_run.rb
inferno_core-0.1.0 lib/inferno/apps/web/serializers/test_run.rb
inferno_core-0.1.0.pre lib/inferno/apps/web/serializers/test_run.rb
inferno_core-0.0.8 lib/inferno/apps/web/serializers/test_run.rb
inferno_core-0.0.8.pre2 lib/inferno/apps/web/serializers/test_run.rb
inferno_core-0.0.8.pre lib/inferno/apps/web/serializers/test_run.rb
inferno_core-0.0.7 lib/inferno/apps/web/serializers/test_run.rb
inferno_core-0.0.6 lib/inferno/apps/web/serializers/test_run.rb
inferno_core-0.0.5 lib/inferno/apps/web/serializers/test_run.rb
inferno_core-0.0.4 lib/inferno/apps/web/serializers/test_run.rb