Sha256: bf9f9b95f5031eda8a84c78c9a55d29821f87c25b9875475f1b530d22d36f010
Contents?: true
Size: 329 Bytes
Versions: 4
Compression:
Stored size: 329 Bytes
Contents
# Copyright (c) 2020 Jerome Arbez-Gindre # frozen_string_literal: true require('defmastership') RSpec.describe(String) do context 'when .commented?' do it { expect('blabla'.commented?).to(be(false)) } it { expect('//blabla'.commented?).to(be(true)) } it { expect('///blabla'.commented?).to(be(false)) } end end
Version data entries
4 entries across 4 versions & 1 rubygems