GeekPark/gpk_account

View on GitHub
spec/factories/broadcasts.rb

Summary

Maintainability
A
0 mins
Test Coverage
FactoryGirl.define do
  factory :broadcast do
    content '当前测试已经通过'
    send_at Time.now.getlocal + 1.minute
    redirect 'just string'
  end

  trait :activity do
    content_type 'activity_type'
  end

  trait :topic do
    content_type 'topic_type'
  end
end