Sha256: d4e64fa19acd41d1752df08faa463e550316cc14d1fb22dabdf02366cd60249b
Contents?: true
Size: 467 Bytes
Versions: 7
Compression:
Stored size: 467 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Function::Predicate::NoMatch, '.call' do subject { object.call(left, right) } let(:object) { described_class } context 'when right regexp matches left' do let(:left) { 'Dan Kubb' } let(:right) { /Dan Kubb/ } it { should be(false) } end context 'when right regexp does not match left' do let(:left) { 'Alex Kubb' } let(:right) { /Dan Kubb/ } it { should be(true) } end end
Version data entries
7 entries across 7 versions & 2 rubygems