mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
DEV: Prefabrication (test optimization) (#7414)
* Introduced fab!, a helper that creates database state for a group It's almost identical to let_it_be, except: 1. It creates a new object for each test by default, 2. You can disable it using PREFABRICATION=0
This commit is contained in:
@@ -123,10 +123,10 @@ describe IncomingLinksReport do
|
||||
describe 'top_referrers' do
|
||||
subject(:top_referrers) { IncomingLinksReport.find('top_referrers').as_json }
|
||||
|
||||
let(:amy) { Fabricate(:user, username: 'amy') }
|
||||
let(:bob) { Fabricate(:user, username: 'bob') }
|
||||
let(:post1) { Fabricate(:post) }
|
||||
let(:post2) { Fabricate(:post) }
|
||||
fab!(:amy) { Fabricate(:user, username: 'amy') }
|
||||
fab!(:bob) { Fabricate(:user, username: 'bob') }
|
||||
fab!(:post1) { Fabricate(:post) }
|
||||
fab!(:post2) { Fabricate(:post) }
|
||||
let(:topic1) { post1.topic }
|
||||
let(:topic2) { post2.topic }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user