Sha256: 4073f90699aaa11385755832bcd01aaf227d9194693f9203512b2810b7257f62

Contents?: true

Size: 1.11 KB

Versions: 37

Compression:

Stored size: 1.11 KB

Contents

# Copyright (C) 2013  Kouhei Sutou <kou@clear-code.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

class TestDecomposerRegistry < Test::Unit::TestCase
  class CSVDecomposer < ChupaText::Decomposer
  end

  def setup
    @registry = ChupaText::DecomposerRegistry.new
  end

  def test_register
    assert_equal([], @registry.to_a)
    @registry.register("csv", CSVDecomposer)
    assert_equal([["csv", CSVDecomposer]], @registry.to_a)
  end
end

Version data entries

37 entries across 37 versions & 1 rubygems

Version Path
chupa-text-1.3.6 test/test-decomposer-registry.rb
chupa-text-1.3.5 test/test-decomposer-registry.rb
chupa-text-1.3.4 test/test-decomposer-registry.rb
chupa-text-1.3.3 test/test-decomposer-registry.rb
chupa-text-1.3.2 test/test-decomposer-registry.rb
chupa-text-1.3.1 test/test-decomposer-registry.rb
chupa-text-1.3.0 test/test-decomposer-registry.rb
chupa-text-1.2.9 test/test-decomposer-registry.rb
chupa-text-1.2.8 test/test-decomposer-registry.rb
chupa-text-1.2.7 test/test-decomposer-registry.rb
chupa-text-1.2.6 test/test-decomposer-registry.rb
chupa-text-1.2.5 test/test-decomposer-registry.rb
chupa-text-1.2.4 test/test-decomposer-registry.rb
chupa-text-1.2.3 test/test-decomposer-registry.rb
chupa-text-1.2.2 test/test-decomposer-registry.rb
chupa-text-1.2.1 test/test-decomposer-registry.rb
chupa-text-1.2.0 test/test-decomposer-registry.rb
chupa-text-1.1.9 test/test-decomposer-registry.rb
chupa-text-1.1.8 test/test-decomposer-registry.rb
chupa-text-1.1.7 test/test-decomposer-registry.rb