Sha256: 81d78dec3b7168bde7836d4efc3d1934157a7a2eb05259a162c625a8e40853f6
Contents?: true
Size: 1.43 KB
Versions: 37
Compression:
Stored size: 1.43 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 TestDecomposer < Test::Unit::TestCase sub_test_case("not-implemented") do class NotImplementedDecomposer < ChupaText::Decomposer end def setup @decomposer = NotImplementedDecomposer.new({}) @data = ChupaText::Data.new end def test_target? message = "must implement #{NotImplementedDecomposer}\#target?" assert_raise(NotImplementedError.new(message)) do @decomposer.target?(@data) end end def test_decompose message = "must implement #{NotImplementedDecomposer}\#decompose" assert_raise(NotImplementedError.new(message)) do @decomposer.decompose(@data) end end end end
Version data entries
37 entries across 37 versions & 1 rubygems