Sha256: 35f0f1903249ee47d2355e124ca138d72ef4f102e8f366e216c9f481434ee55f
Contents?: true
Size: 1.14 KB
Versions: 5
Compression:
Stored size: 1.14 KB
Contents
# -*- coding: utf-8 -*- require 'test/helper' class CommandTest < Test::Unit::TestCase def test_help Command.run([]) end def test_optparse_detect_lang Command.any_instance.expects(:detect_lang).with('profiles', ['abc.txt', 'def.txt'], 0.5) Command.run(['--detectlang', '-d', 'profiles', '-a', '0.5', 'abc.txt', 'def.txt']) Command.any_instance.expects(:detect_lang).with('profiles', ['abc.txt', 'def.txt']) Command.run(['--detectlang', '-d', 'profiles', 'abc.txt', 'def.txt']) end def test_optparse_batch_test Command.any_instance.expects(:batch_test).with('profiles', ['abc.txt', 'def.txt'], 0.5) Command.run(['--batchtest', '-d', 'profiles', '-a', '0.5', 'abc.txt', 'def.txt']) Command.any_instance.expects(:batch_test).with('profiles', ['abc.txt', 'def.txt']) Command.run(['--batchtest', '-d', 'profiles', 'abc.txt', 'def.txt']) end def test_detect_lang cmd = Command.new cmd.detect_lang('profiles', ['test/test_data/pl']) end def test_detect_single_lang cmd = Command.new cmd.initialize_factory('profiles') assert_equal("pl", cmd.detect_single_lang('test/test_data/pl', 0.5)) end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
langusta-0.2.4 | test/test_command.rb |
langusta-0.2.3 | test/test_command.rb |
langusta-0.2.2 | test/test_command.rb |
langusta-0.2.1 | test/test_command.rb |
langusta-0.2.0 | test/test_command.rb |