File: convert_hash_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 (26 lines) | stat: -rw-r--r-- 791 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
# frozen_string_literal: true

RSpec.describe TTY::Prompt::Question, "convert to hash" do
  subject(:prompt) { TTY::Prompt::Test.new }

  it "converts answer to a hash" do
    prompt.input << "a:1 b:2 c:3"
    prompt.input.rewind
    answer = prompt.ask("Options?", convert: :map)
    expect(answer).to eq({a: "1", b: "2", c: "3"})
  end

  it "converts answer to a hash of integer values" do
    prompt.input << "a:1 b:2 c:3"
    prompt.input.rewind
    answer = prompt.ask("Options?", convert: :int_map)
    expect(answer).to eq({a: 1, b: 2, c: 3})
  end

  it "converts answer to a hash of boolean values" do
    prompt.input << "a:t b:f c:t"
    prompt.input.rewind
    answer = prompt.ask("Options?", convert: :bool_map)
    expect(answer).to eq({a: true, b: false, c: true})
  end
end