mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 23:16:18 +08:00
493d437e79
* Remove outdated option
04078317ba
* Use the non-globally exposed RSpec syntax
https://github.com/rspec/rspec-core/pull/2803
* Use the non-globally exposed RSpec syntax, cont
https://github.com/rspec/rspec-core/pull/2803
* Comply to strict predicate matchers
See:
- https://github.com/rspec/rspec-expectations/pull/1195
- https://github.com/rspec/rspec-expectations/pull/1196
- https://github.com/rspec/rspec-expectations/pull/1277
18 lines
518 B
Ruby
18 lines
518 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.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
|