Sha256: 6aa1bbd31a097986a8766594aa2050421c15cb958cd8996fa3d199e175915ebb

Contents?: true

Size: 865 Bytes

Versions: 8

Compression:

Stored size: 865 Bytes

Contents

# Generates fake comment data we can use to test with
FactoryGirl.define do
  factory :comment, :class => Hubstats::Comment do
    user
    id {Faker::Number.number(6).to_i}
    body {Faker::Lorem.sentence}
  end

  factory :comment_hash, class:Hash do
    association :user, factory: :user_hash, strategy: :build
    id {Faker::Number.number(6).to_i}
    body {Faker::Lorem.sentence}
    initialize_with { attributes } 
  end

  factory :comment_payload_hash, class:Hash do 
    id {Faker::Number.number(6).to_i}
    type ["IssueCommentEvent", "CommitCommentEvent", "PullRequestReviewCommentEvent"].sample
    association :repository, factory: :repo_hash, strategy: :build
    association :pull_request, factory: :pull_request_hash, strategy: :build
    association :comment, factory: :comment_hash, strategy: :build
    initialize_with { attributes } 
  end 
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
hubstats-0.5.4 spec/factories/comment.rb
hubstats-0.5.3 spec/factories/comment.rb
hubstats-0.5.2 spec/factories/comment.rb
hubstats-0.5.1 spec/factories/comment.rb
hubstats-0.5.0 spec/factories/comment.rb
hubstats-0.4.4 spec/factories/comment.rb
hubstats-0.4.2 spec/factories/comment.rb
hubstats-0.4.1 spec/factories/comment.rb