summaryrefslogtreecommitdiff
path: root/spec/mspec/spec/matchers/have_constant_spec.rb
blob: 20c5f161d46671b9deda1854358de7407599a4f0 (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
35
36
37
require 'spec_helper'
require 'mspec/expectations/expectations'
require 'mspec/matchers'

class HCMSpecs
  X = :x
end

describe HaveConstantMatcher do
  it "matches when mod has the constant" do
    matcher = HaveConstantMatcher.new :X
    matcher.matches?(HCMSpecs).should be_true
  end

  it "does not match when mod does not have the constant" do
    matcher = HaveConstantMatcher.new :A
    matcher.matches?(HCMSpecs).should be_false
  end

  it "provides a failure message for #should" do
    matcher = HaveConstantMatcher.new :A
    matcher.matches?(HCMSpecs)
    matcher.failure_message.should == [
      "Expected HCMSpecs to have constant 'A'",
      "but it does not"
    ]
  end

  it "provides a failure messoge for #should_not" do
    matcher = HaveConstantMatcher.new :X
    matcher.matches?(HCMSpecs)
    matcher.negative_failure_message.should == [
      "Expected HCMSpecs NOT to have constant 'X'",
      "but it does"
    ]
  end
end