Skip to content

Commit

Permalink
TODOコメントを追加
Browse files Browse the repository at this point in the history
後でテストを書きます
  • Loading branch information
nissyi-gh committed Jul 23, 2023
1 parent 997eded commit b7c9e10
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions spec/lib/pomodoro_spec.rb
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# frozen_string_literal: true

RSpec.describe TaskPegion::Pomodoro do
describe '#initialize' do
let(:started_at) { Time.now }
let(:pomodoro) do
started_at
TaskPegion::Pomodoro.new
end
let(:started_at) { Time.now }
let(:pomodoro) do
started_at
TaskPegion::Pomodoro.new
end

describe '#initialize' do
it 'initialize Config' do
expect(TaskPegion::Config).to receive(:new)
pomodoro
Expand All @@ -21,4 +21,6 @@
expect(pomodoro.next_notice_type).to eq('break')
end
end

# TODO: write test for #run, #update_elapsed_time, #hundle_interrupt, #send_break_notice, #send_work_notice
end

0 comments on commit b7c9e10

Please sign in to comment.