Sha256: 4bacd455c244457f2f700b5d51d4c4771dfcf8aa54db400bbf7568dec0743488

Contents?: true

Size: 639 Bytes

Versions: 10

Compression:

Stored size: 639 Bytes

Contents

module WMLHelpers
  def sample_amendment
    e = Weskit::WML::Element.new :bar, :amendment => true
    e.push Weskit::WML::Attribute.new :bat, :baz
  end

  def document_with_amendment
    <<-doc
      [foo]
      [/foo]
      [+foo]
        bat=baz
      [/foo]
    doc
  end

  def document_with_empty_lines
    <<-doc
      
      [a]
        b=c
      [/a]
      
      [d]
        
        e=f
        
      [/d]
      
    doc
  end

  def sample_elements
    a = Weskit::WML::Element.new :a
    b = Weskit::WML::Element.new :b
    c = Weskit::WML::Element.new :c
    d = Weskit::WML::Element.new :d
    a << (b.push c, d)
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
weskit-0.3.6 spec/wml_helpers.rb
weskit-0.3.5 spec/wml_helpers.rb
weskit-0.3.4 spec/wml_helpers.rb
weskit-0.3.3 spec/wml_helpers.rb
weskit-0.3.2 spec/wml_helpers.rb
weskit-0.3.1 spec/wml_helpers.rb
weskit-0.3.0 spec/wml_helpers.rb
weskit-0.2.1 spec/wml_helpers.rb
weskit-0.2.0 spec/wml_helpers.rb
weskit-0.1.0 spec/wml_helpers.rb