Among many things, this version includes updates in the `Layout/ExtraSpacing`, `Layout/SpaceAroundOperators` and `Style/RedundantReturn` rules, which means we need to update the code in some places in order to follow these rules. Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.35.1 to 1.56.2. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop/compare/v1.35.1...v1.56.2) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
381 B
Ruby
18 lines
381 B
Ruby
FactoryBot.define do
|
|
factory :ahoy_event, class: "Ahoy::Event" do
|
|
id { SecureRandom.uuid }
|
|
time { DateTime.current }
|
|
sequence(:name) { |n| "Event #{n} type" }
|
|
end
|
|
|
|
factory :visit do
|
|
id { SecureRandom.uuid }
|
|
started_at { DateTime.current }
|
|
end
|
|
|
|
factory :campaign do
|
|
sequence(:name) { |n| "Campaign #{n}" }
|
|
sequence(:track_id, &:to_s)
|
|
end
|
|
end
|