Sha256: 01483b9e691d6e7efd4984cba1f013bc03fc9bd9ab776004505c3261fcc5f31a

Contents?: true

Size: 1.12 KB

Versions: 4

Compression:

Stored size: 1.12 KB

Contents

FactoryGirl.define do
  factory :result, class: 'ESP::CustomSignature::Result' do
    skip_create

    sequence(:id) { |n| n }
    code 'abc'
    created_at { Time.current }
    language 'javascript'
    status "complete"
    updated_at { Time.current }

    relationships do
      {
        definition: {
          data: {
            type: "definitions",
            id: "1"
          },
          links: {
            related: "http://localhost:3000/api/v2/custom_signature_definitions/1.json"
          }
        },
        region: {
          data: {
            type: "regions",
            id: "1"
          },
          links: {
            related: "http://localhost:3000/api/v2/regions/1.json"
          }
        },
        external_account: {
          data: {
            type: "external_accounts",
            id: "1"
          },
          links: {
            related: "http://localhost:3000/api/v2/external_accounts/1.json"
          }
        },
        alerts: {
          links: {
            related: "http://localhost:3000/api/v2/custom_signature_results/#{id}/alerts.json"
          }
        }
      }
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
esp_sdk-2.8.0 test/factories/custom_signature/results.rb
esp_sdk-2.7.0 test/factories/custom_signature/results.rb
esp_sdk-2.6.0 test/factories/custom_signature/results.rb
esp_sdk-2.5.0 test/factories/custom_signature/results.rb