record_history 0.9.1 → 0.9.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,11 +0,0 @@
1
- FactoryGirl.define do
2
- factory :record_history_model do
3
- item_type { 'SomeData' }
4
- item_id { Factory.create(:some_data).id }
5
- attr_name { Faker::Lorem.words(1).first }
6
- old_value_dump { Marshal.dump(Faker::Base.numerify('##')) }
7
- new_value_dump { Marshal.dump(Faker::Base.numerify('##')) }
8
- author_type { 'User'}
9
- author_id { Factory.create(:user) }
10
- end
11
- end