-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🥗
Journal
: Test adding Entry#summary
when Writing Entries
- zinc-collective#10 - zinc-collective#2 This is a quick line-of-action end-to-end test for setting an `Entry#summary`.
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
require "rails_helper" | ||
|
||
# @see https://github.com/zinc-collective/convene-journal/issues/2 | ||
RSpec.describe "Writing Entries", type: :system do | ||
let(:space) { create(:space, :with_entrance, :with_members) } | ||
let(:journal) { create(:journal, room: space.entrance) } | ||
|
||
before do | ||
sign_in(space.members.first, space) | ||
end | ||
|
||
it "saves the headline, summary and body" do # rubocop:disable RSpec/ExampleLength | ||
visit(polymorphic_path(journal.location(:new, child: :entry))) | ||
|
||
body = 1000.times.map { Faker::Books::Dune.quote }.join("\n\n") | ||
fill_in("Headline", with: "1000 Dune Quotes") | ||
fill_in("Body", with: body) | ||
summary = %( | ||
So you thought you wanted 1000 Dune Quotes? | ||
Well, you were wrong. But here they are anyway! | ||
) | ||
fill_in("Summary", with: summary) | ||
|
||
click_button("Create") | ||
entry = journal.entries.last | ||
expect(entry.headline).to eq("1000 Dune Quotes") | ||
expect(entry.body).to eq(body) | ||
expect(entry.summary).to eq(summary) | ||
end | ||
end |