mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:17:08 +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
63 lines
1.7 KiB
Ruby
63 lines
1.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'quote_comparer'
|
|
|
|
RSpec.describe QuoteComparer do
|
|
|
|
describe "#missing?" do
|
|
fab!(:post) { Fabricate(:post, raw: "This has **text** we _are_ matching") }
|
|
|
|
it "returns true for missing topic and post" do
|
|
expect(QuoteComparer.new(nil, nil, "test")).to be_missing
|
|
end
|
|
|
|
it "returns true for missing topic" do
|
|
expect(QuoteComparer.new(nil, post.post_number, "test")).to be_missing
|
|
end
|
|
|
|
it "returns true for missing post" do
|
|
expect(QuoteComparer.new(post.topic_id, nil, "test")).to be_missing
|
|
end
|
|
|
|
it "returns a falsey value for only missing text" do
|
|
expect(QuoteComparer.new(post.topic_id, post.post_number, nil).missing?).to be(nil)
|
|
end
|
|
|
|
it "returns a falsey value for no missing topic and post" do
|
|
expect(QuoteComparer.new(post.topic_id, post.post_number, "test").missing?).to be(nil)
|
|
end
|
|
end
|
|
|
|
describe "#modified?" do
|
|
fab!(:post) { Fabricate(:post, raw: "This has **text** we _are_ matching") }
|
|
|
|
def qc(text)
|
|
QuoteComparer.new(post.topic_id, post.post_number, text)
|
|
end
|
|
|
|
it "returns true for nil text" do
|
|
expect(qc(nil)).to be_modified
|
|
end
|
|
|
|
it "returns true for empty text" do
|
|
expect(qc("")).to be_modified
|
|
end
|
|
|
|
it "returns true for modified text" do
|
|
expect(qc("text is modified")).to be_modified
|
|
end
|
|
|
|
it "return false when the text matches exactly" do
|
|
expect(qc("This has text we are matching")).not_to be_modified
|
|
end
|
|
|
|
it "return false when there's a substring" do
|
|
expect(qc("text we are")).not_to be_modified
|
|
end
|
|
|
|
it "return false when there's extra space" do
|
|
expect(qc("\n\ntext we are \t")).not_to be_modified
|
|
end
|
|
end
|
|
end
|