mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 02:50:00 +08:00
6e161d3e75
The most common thing that we do with fab! is: fab!(:thing) { Fabricate(:thing) } This commit adds a shorthand for this which is just simply: fab!(:thing) i.e. If you omit the block, then, by default, you'll get a `Fabricate`d object using the fabricator of the same name.
24 lines
932 B
Ruby
24 lines
932 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe PublishedPage, type: :model do
|
|
fab!(:topic)
|
|
|
|
it "has path and url helpers" do
|
|
pp = PublishedPage.create!(topic: topic, slug: "hello-world")
|
|
expect(pp.path).to eq("/pub/hello-world")
|
|
expect(pp.url).to eq(Discourse.base_url + "/pub/hello-world")
|
|
end
|
|
|
|
it "validates the slug" do
|
|
expect(PublishedPage.new(topic: topic, slug: "this-is-valid")).to be_valid
|
|
expect(PublishedPage.new(topic: topic, slug: "10_things_i_hate_about_slugs")).to be_valid
|
|
expect(PublishedPage.new(topic: topic, slug: "YELLING")).to be_valid
|
|
|
|
expect(PublishedPage.new(topic: topic, slug: "how about some space")).not_to be_valid
|
|
expect(PublishedPage.new(topic: topic, slug: "slugs are %%%%")).not_to be_valid
|
|
|
|
expect(PublishedPage.new(topic: topic, slug: "check-slug")).not_to be_valid
|
|
expect(PublishedPage.new(topic: topic, slug: "by-topic")).not_to be_valid
|
|
end
|
|
end
|