Sha256: a68715043f1c27f2383b58fd6a47135e76671e9d26050025adb2dc498711a4c4

Contents?: true

Size: 393 Bytes

Versions: 6

Compression:

Stored size: 393 Bytes

Contents

u = User.create(username: 'test')
User.create(username: 'unused')
p = Post.create(text: 'First post!', user: u)
Comment.create(post_id: p.id, text: 'First comment!', user: u)
Post.create(text: 'Second post!')
t = Tutorial.create(text: 'Tutorial!')
Comment.create(post_id: t.id, text: 'First comment!')
a = Article.create(text: 'Article!')
Comment.create(post_id: a.id, text: 'First comment!')

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
calculated_attributes-0.5.0 spec/support/data.rb
calculated_attributes-0.4.0 spec/support/data.rb
calculated_attributes-0.3.0 spec/support/data.rb
calculated_attributes-0.2.0 spec/support/data.rb
calculated_attributes-0.1.5 spec/support/data.rb
calculated_attributes-0.1.4 spec/support/data.rb