Sha256: 47d5eca2cd5c4b84e66cf4e14a21d4ac6f15b1a30d3e07637726050974be1a39
Contents?: true
Size: 399 Bytes
Versions: 12
Compression:
Stored size: 399 Bytes
Contents
require "spec_helper" RSpec.describe ::Code::Parser do subject { ::Code::Parser.parse(input) } ["a..b"].each do |input| context input do let!(:input) { input } it { subject } end end ["a /* cool */ .. b", "a .. /* cool */ b"].each do |input| context input do let!(:input) { input } it { expect(subject.to_json).to include("cool") } end end end
Version data entries
12 entries across 12 versions & 2 rubygems