File: yaml_to_shoulda.rake

package info (click to toggle)
ruby-shoulda-context 2.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 476 kB
  • sloc: ruby: 1,712; sh: 200; makefile: 4
file content (28 lines) | stat: -rw-r--r-- 907 bytes parent folder | download | duplicates (4)
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
namespace :shoulda do
  # From http://blog.internautdesign.com/2007/11/2/a-yaml_to_shoulda-rake-task
  # David.Lowenfels@gmail.com
  desc "Converts a YAML file (FILE=./path/to/yaml) into a Shoulda skeleton"
  task :from_yaml do
    require 'yaml'

    def yaml_to_context(hash, indent = 0)
      indent1 = '  ' * indent
      indent2 = '  ' * (indent + 1)
      hash.each_pair do |context, shoulds|
        puts indent1 + "context \"#{context}\" do"
        puts
        shoulds.each do |should|
          yaml_to_context( should, indent + 1 ) and next if should.is_a?( Hash )
          puts indent2 + "should_eventually \"" + should.gsub(/^should +/,'') + "\" do"
          puts indent2 + "end"
          puts
        end
        puts indent1 + "end"
      end
    end

    puts("Please pass in a FILE argument.") and exit unless ENV['FILE']

    yaml_to_context( YAML.load_file( ENV['FILE'] ) )
  end
end