discourse/spec/models/published_page_spec.rb
Daniel Waterworth 6e161d3e75
DEV: Allow fab! without block (#24314)
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.
2023-11-09 16:47:59 -06:00

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