mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 07:23:40 +08:00
c9dab6fd08
It's very easy to forget to add `require 'rails_helper'` at the top of every core/plugin spec file, and omissions can cause some very confusing/sporadic errors. By setting this flag in `.rspec`, we can remove the need for `require 'rails_helper'` entirely.
18 lines
512 B
Ruby
18 lines
512 B
Ruby
# frozen_string_literal: true
|
|
|
|
describe "seed-fu patch" do
|
|
it "does not modify a sequence on an existing table" do
|
|
u = User.create!(username: "test1", email: "test1@example.com")
|
|
uid1 = u.id
|
|
UserDestroyer.new(Discourse.system_user).destroy(u)
|
|
|
|
SeedFu.quiet = true
|
|
SeedFu.seed
|
|
|
|
# Ensure sequence was not reset. A new user should have
|
|
# id one greater than the last user
|
|
u2 = User.create!(username: "test1", email: "test1@example.com")
|
|
expect(u2.id).to eq(uid1 + 1)
|
|
end
|
|
end
|