mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:09: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.
46 lines
1.4 KiB
Ruby
46 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe "Keyboard shortcuts", type: :system do
|
|
describe "<a>" do
|
|
let(:current_user) { topic.user }
|
|
let(:topic_page) { PageObjects::Pages::Topic.new }
|
|
|
|
before { sign_in(current_user) }
|
|
|
|
context "when on a private message page" do
|
|
fab!(:topic) { Fabricate(:private_message_topic) }
|
|
|
|
context "when the message is not archived" do
|
|
it "archives the message" do
|
|
topic_page.visit_topic(topic)
|
|
send_keys("a")
|
|
expect(page).to have_current_path("/u/#{current_user.username}/messages")
|
|
expect(UserArchivedMessage.exists?(topic: topic)).to be true
|
|
end
|
|
end
|
|
|
|
context "when the message is already archived" do
|
|
before { UserArchivedMessage.create!(topic: topic, user: current_user) }
|
|
|
|
it "moves back the message to inbox" do
|
|
topic_page.visit_topic(topic)
|
|
send_keys("a")
|
|
expect(page).to have_current_path("/u/#{current_user.username}/messages")
|
|
expect(UserArchivedMessage.exists?(topic: topic)).to be false
|
|
end
|
|
end
|
|
end
|
|
|
|
context "when on a public topic page" do
|
|
fab!(:topic)
|
|
|
|
it "doesn't archive the topic" do
|
|
topic_page.visit_topic(topic)
|
|
send_keys("a")
|
|
expect(page).to have_current_path("/t/#{topic.slug}/#{topic.id}")
|
|
expect(UserArchivedMessage.exists?(topic: topic)).to be false
|
|
end
|
|
end
|
|
end
|
|
end
|