Sha256: 90cf8574430efbb435c37240f1d5193b8876c388d39f06090eec2d21451fccd3

Contents?: true

Size: 509 Bytes

Versions: 19

Compression:

Stored size: 509 Bytes

Contents

require 'spec_helper'
module Finitio
  describe Syntax, "metadata" do

    let(:match){
      Syntax.parse(input, root: "metadata")
    }

    describe "value" do
      subject{
        match.value
      }

      context 'simple description' do
        let(:input){ '/- Hello World -/' }

        it{ should eq({description: "Hello World"}) }
      end

      context 'tuple' do
        let(:input){ '/- label: "Hello World" -/' }

        it{ should eq({label: "Hello World"}) }
      end
    end

  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
finitio-0.12.0 spec/syntax/nodes/test_metadata.rb
finitio-0.11.4 spec/syntax/nodes/test_metadata.rb
finitio-0.11.3 spec/syntax/nodes/test_metadata.rb
finitio-0.11.2 spec/syntax/nodes/test_metadata.rb
finitio-0.11.1 spec/syntax/nodes/test_metadata.rb
finitio-0.10.0 spec/syntax/nodes/test_metadata.rb
finitio-0.9.1 spec/syntax/nodes/test_metadata.rb
finitio-0.9.0 spec/syntax/nodes/test_metadata.rb
finitio-0.8.0 spec/syntax/nodes/test_metadata.rb
finitio-0.7.0 spec/syntax/nodes/test_metadata.rb
finitio-0.7.0.pre.rc4 spec/syntax/nodes/test_metadata.rb
finitio-0.7.0.pre.rc3 spec/syntax/nodes/test_metadata.rb
finitio-0.7.0.pre.rc2 spec/syntax/nodes/test_metadata.rb
finitio-0.7.0.pre.rc1 spec/syntax/nodes/test_metadata.rb
finitio-0.6.1 spec/syntax/nodes/test_metadata.rb
finitio-0.6.0 spec/syntax/nodes/test_metadata.rb
finitio-0.5.2 spec/syntax/nodes/test_metadata.rb
finitio-0.5.1 spec/syntax/nodes/test_metadata.rb
finitio-0.5.0 spec/syntax/nodes/test_metadata.rb