summaryrefslogtreecommitdiff
path: root/spec/commands/clear_screen_spec.rb
blob: 663e3717f57ff74c3e3e11d47f48574a7f274ead (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

RSpec.describe "clear-screen" do
  before do
    @t = pry_tester
  end

  it 'calls the "clear" command on non-Windows platforms' do
    expect(Pry::Helpers::Platform).to receive(:windows?)
      .at_least(:once).and_return(false)
    expect(Pry.config.system).to receive(:call)
      .with(an_instance_of(Pry::Output), 'clear', an_instance_of(Pry))
    @t.process_command 'clear-screen'
  end

  it 'calls the "cls" command on Windows' do
    expect(Pry::Helpers::Platform).to receive(:windows?)
      .at_least(:once).and_return(true)
    expect(Pry.config.system).to receive(:call)
      .with(an_instance_of(Pry::Output), 'cls', an_instance_of(Pry))
    @t.process_command 'clear-screen'
  end
end