summaryrefslogtreecommitdiff
path: root/test/did_you_mean/tree_spell/test_human_typo.rb
blob: 7ede9e393e0b57bb83bd9bf263be2aee2dd12810 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require_relative '../helper'
require_relative 'human_typo'

class HumanTypoTest < Test::Unit::TestCase
  def setup
    @input = 'spec/services/anything_spec'
    @sh = TreeSpell::HumanTypo.new(@input, lambda: 0.05)
    @len = @input.length
  end

  def test_changes
    # srand seed ensures all four actions are called
    srand 247_696_449
    sh = TreeSpell::HumanTypo.new(@input, lambda: 0.20)
    word_error = sh.call
    assert_equal word_error, 'spec/suervcieq/anythin_gpec'
  end

  def test_check_input
    assert_raise(RuntimeError, "input length must be greater than 5 characters: tiny") do
      TreeSpell::HumanTypo.new('tiny')
    end
  end
end