Sha256: 50cfa29072cce466dcc4e79346ef6880533d30cc31b2516286c0d77d25b92616
Contents?: true
Size: 417 Bytes
Versions: 19
Compression:
Stored size: 417 Bytes
Contents
require 'spec_helper' module Finitio describe Syntax, "comment" do subject{ Syntax.parse(input, root: "comment") } [ '#', "#\n", "# \n", '# foo bar', "# foo bar\n", ].each do |source| context "when `#{source}`" do let(:input){ source } it 'should parse' do expect(subject).to eq(source) end end end end end
Version data entries
19 entries across 19 versions & 1 rubygems