Sha256: fdaf8a24fbdeeebdc08a8e4adc0bae5059a459622f7782b9d2086ea88eb60443
Contents?: true
Size: 1.05 KB
Versions: 6
Compression:
Stored size: 1.05 KB
Contents
require 'aruba/cucumber' module ArubaExt def run(cmd) super(cmd =~ /^rspec/ ? "bin/#{cmd}" : cmd) end end World(ArubaExt) Before do @aruba_timeout_seconds = 15 end unless File.directory?('./tmp/example_app') system "rake generate:app generate:stuff" end def aruba_path(file_or_dir) File.expand_path("../../../#{file_or_dir.sub('example_app','aruba')}", __FILE__) end def example_app_path(file_or_dir) File.expand_path("../../../#{file_or_dir}", __FILE__) end def write_symlink(file_or_dir) source = example_app_path(file_or_dir) target = aruba_path(file_or_dir) system "ln -s #{source} #{target}" end def copy(file_or_dir) source = example_app_path(file_or_dir) target = aruba_path(file_or_dir) system "cp -r #{source} #{target}" end Before do steps %Q{ Given a directory named "spec" } Dir['tmp/example_app/*'].each do |file_or_dir| if !(file_or_dir =~ /spec$/) write_symlink(file_or_dir) end end ["spec/spec_helper.rb"].each do |file_or_dir| write_symlink("tmp/example_app/#{file_or_dir}") end end
Version data entries
6 entries across 6 versions & 1 rubygems