Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions spec/compose_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
capture_stdout { described_class.process(args) }
post = File.read(path)
expect(post).to match(%r!description: my description!)
expect(post).to match(%r!category: !)
expect(post).to match(%r!category:!)
end

context "env variable EDITOR is set up" do
Expand Down Expand Up @@ -332,7 +332,7 @@
capture_stdout { described_class.process(args, options) }
post = File.read(path)
expect(post).to match(%r!description: my description!)
expect(post).to match(%r!category: !)
expect(post).to match(%r!category:!)
end

context "env variable EDITOR is set up" do
Expand Down Expand Up @@ -513,7 +513,7 @@
capture_stdout { described_class.process(args, options) }
post = File.read(path)
expect(post).to match(%r!description: my description!)
expect(post).to match(%r!category: !)
expect(post).to match(%r!category:!)
end

context "env variable EDITOR is set up" do
Expand Down
2 changes: 1 addition & 1 deletion spec/draft_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
capture_stdout { described_class.process(args) }
post = File.read(path)
expect(post).to match(%r!description: my description!)
expect(post).to match(%r!category: !)
expect(post).to match(%r!category:!)
end

context "env variable EDITOR is set up" do
Expand Down
2 changes: 1 addition & 1 deletion spec/post_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
capture_stdout { described_class.process(args) }
post = File.read(path)
expect(post).to match(%r!description: my description!)
expect(post).to match(%r!category: !)
expect(post).to match(%r!category:!)
end

context "env variable EDITOR is set up" do
Expand Down