summaryrefslogtreecommitdiff
path: root/spec/mspec/spec/expectations/expectations_spec.rb
blob: fea692f3e3b7ffa04161f61cf8fcabc262a8b2ae (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
require 'spec_helper'
require 'mspec/expectations/expectations'

describe SpecExpectationNotMetError do
  it "is a subclass of StandardError" do
    SpecExpectationNotMetError.ancestors.should include(StandardError)
  end
end

describe SpecExpectationNotFoundError do
  it "is a subclass of StandardError" do
    SpecExpectationNotFoundError.ancestors.should include(StandardError)
  end
end

describe SpecExpectationNotFoundError, "#message" do
  it "returns 'No behavior expectation was found in the example'" do
    m = SpecExpectationNotFoundError.new.message
    m.should == "No behavior expectation was found in the example"
  end
end

describe SpecExpectation, "#fail_with" do
  it "raises an SpecExpectationNotMetError" do
    lambda {
      SpecExpectation.fail_with "expected this", "to equal that"
    }.should raise_error(SpecExpectationNotMetError, "expected this to equal that")
  end
end