Sha256: 796dd07f5c343768f37ba12b978032d89ed0cc18b63132fbe63a6f871e69b62d

Contents?: true

Size: 1.51 KB

Versions: 7

Compression:

Stored size: 1.51 KB

Contents

require 'spec_helper'
# require 'wukong'

# describe_example_script(:telegram, 'dataflow/telegram.rb') do
#   it 'runs' do
#     Wukong::LocalRunner.run(subject, :default)
#   end

#   context 'Recompose processor' do
#     subject{ Wukong::Widget::Recompose }
#     its(:field_names){ should include(:break_length) }

#     let(:words    ){
#       # 0    5    1    5    2    5    3    5    4    5    5    5    6    5    7    5    8
#       %w[
#         If names be not correct, language is not in accordance with
#         the truth of things.  If language be not in accordance with
#         the truth of things, affairs cannot be carried on to success. ] }

#     context '#process' do
#       it 'breaks lines correctly' do
#         (2..80).each do |len|
#           # run the data flow into an array sink
#           test_sink = Wukong::Sink::ArraySink.new
#           rc = subject.new(:break_length => len, :output => test_sink )
#           words.each{|word| rc.process(word) }
#           rc.stop
#           # start and end are correct
#           test_sink.records.first.should =~ /^If/
#           test_sink.records.last.should =~ /success\.$/
#           # lines should be as long as possible, but not longer
#           test_sink.records[0..-2].zip(test_sink.records[1..-1]) do |line, nextl|
#             nextw = nextl.split[0]
#             ((line.length <= len) || line !~ /\s/).should be_true
#             (line.length + nextw.length + 1 > len).should be_true
#           end
#         end
#       end

#     end
#   end

# end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
ul-wukong-4.1.1 spec/examples/dataflow/telegram_spec.rb
ul-wukong-4.1.0 spec/examples/dataflow/telegram_spec.rb
wukong-4.0.0 spec/examples/dataflow/telegram_spec.rb
wukong-3.0.1 spec/examples/dataflow/telegram_spec.rb
wukong-3.0.0 spec/examples/dataflow/telegram_spec.rb
wukong-3.0.0.pre3 spec/examples/dataflow/telegram_spec.rb
wukong-3.0.0.pre2 spec/examples/dataflow/telegram_spec.rb