jashmenn / warningshot-extra-resolvers

Your own personal warningshot resolvers, ripe for sharing.

This URL has Read+Write access

warningshot-extra-resolvers / resolver_spec_template.txt
100755 41 lines (33 sloc) 1.048 kb
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
38
39
40
41
require "." / "lib" / "resolvers" RESOLVER_NAME
 
describe WarningShot::RESOLVER_NAME do
 
  it 'should have tests registered' do
    WarningShot::RESOLVER_NAME.tests.empty?.should be(false)
  end
 
  it 'should have resolutions registered' do
    WarningShot::RESOLVER_NAME.resolutions.empty?.should be(false)
  end
     
  describe 'with healing enabled' do
    describe 'with heal instructions' do
      it 'should' do
        pending
      end
    end # End healing enabled, instructions provided
    
    describe 'without heal instructions' do
      it 'should' do
        pending
      end
    end # End healing enabled, instructions not provided
  end # End healing enabled
  
  describe 'with healing disabled' do
    describe 'with heal instructions' do
      it 'should' do
        pending
      end
    end #End healing disabled, instructions provided
    
    describe 'without heal instructions' do
      it 'should' do
        pending
      end
    end # End healing disabled, instructions not provided
  end # End healing disabled
end