user = User.create!( email: "nahlebiscanon@alexkurtzman.com", password: "password", password_confirmation: "password" ) cat1 = Category.create!(title: "Femslash Creations", description: "This is a description") cat2 = Category.create!(title: "Toxic Yuri Creations", description: "This is a description") cat3 = Category.create!(title: "Yuricest Creations", description: "This is a description") topic1 = ForumTopic.create!( title: "Writing - WIP", description: "For sharing writing works in progress and such.", category: cat1 ) topic2 = ForumTopic.create!( title: "Art - WIP", description: "For sharing visual art works in progress.", category: cat1 ) thread1 = ForumThread.create!( title: "NAHLEB TRANSFEM CALEB", body: "lorem ipsum text", forum_topic: topic1 ) thread2 = ForumThread.create!( title: "samjett rights", body: "can you be a sugar mommy in a post-scarcity world", forum_topic: topic2 ) 2.times do Reply.create!( body: "nahleb is canon brother", thread_id: thread1.id, user: user ) end 2.times do Reply.create!( body: "nahleb is canon brother", thread_id: thread2.id, user: user ) end