public
Description: Dependency Resolution Framework
Homepage: http://warningshot.lighthouseapp.com
Clone URL: git://github.com/coryodaniel/warningshot.git
coryodaniel (author)
Thu Feb 26 17:40:45 -0800 2009
commit  57c993689114a1ee04bdf558ec9f5607851e2ccf
tree    f9c34cc23f84172f67fbaf16c21fdb4d508566f3
parent  4bf02c372017d7458ed618f11a7c82c70c64e609
warningshot / resolver_spec_template.txt
100755 40 lines (33 sloc) 1.047 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
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