File: letter_case_spec.rb

package info (click to toggle)
ruby-tty-prompt 0.23.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,452 kB
  • sloc: ruby: 8,847; makefile: 4
file content (41 lines) | stat: -rw-r--r-- 1,101 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# frozen_string_literal: true

RSpec.describe TTY::Prompt::Question::Modifier, "#letter_case" do
  context "string" do
    let(:string) { "text to modify" }

    it "changes to uppercase" do
      modified = described_class.letter_case(:up, string)
      expect(modified).to eq("TEXT TO MODIFY")
    end

    it "changes to lower case" do
      modified = described_class.letter_case(:down, string)
      expect(modified).to eq("text to modify")
    end

    it "capitalizes text" do
      modified = described_class.letter_case(:capitalize, string)
      expect(modified).to eq("Text to modify")
    end
  end

  context "nil (empty user input)" do
    let(:string) { nil }

    example "up returns nil" do
      modified = described_class.letter_case(:up, string)
      expect(modified).to be_nil
    end

    example "down returns nil" do
      modified = described_class.letter_case(:down, string)
      expect(modified).to be_nil
    end

    example "capitalize returns nil" do
      modified = described_class.letter_case(:capitalize, string)
      expect(modified).to be_nil
    end
  end
end