summaryrefslogtreecommitdiff
path: root/spec/mspec/spec/runner/filters/match_spec.rb
blob: f2c665c4958bbc16c13e016a8c3348db688fe01a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
require File.dirname(__FILE__) + '/../../spec_helper'
require 'mspec/runner/mspec'
require 'mspec/runner/filters/match'

describe MatchFilter, "#===" do
  before :each do
    @filter = MatchFilter.new nil, 'a', 'b', 'c'
  end

  it "returns true if the argument matches any of the #initialize strings" do
    @filter.===('aaa').should == true
    @filter.===('bccb').should == true
  end

  it "returns false if the argument matches none of the #initialize strings" do
    @filter.===('d').should == false
  end
end

describe MatchFilter, "#register" do
  it "registers itself with MSpec for the designated action list" do
    filter = MatchFilter.new :include
    MSpec.should_receive(:register).with(:include, filter)
    filter.register
  end
end

describe MatchFilter, "#unregister" do
  it "unregisters itself with MSpec for the designated action list" do
    filter = MatchFilter.new :exclude
    MSpec.should_receive(:unregister).with(:exclude, filter)
    filter.unregister
  end
end