module RSpec::Rails module View def create_view name, action, type, content=nil file = view_file_name(name, action, type) unless File.exist?(file) FileUtils.mkdir_p File.dirname(file) content ||= yield if block_given? return if !content File.open(file, 'w') do |f| f.puts content end end end def remove_view name, action, type file = view_file_name(name, action, type) FileUtils.rm_f(file) if File.exist?(file) end def view_file_name name, action, type File.join(::Rails.root, "app/views/#{name}/#{action}.#{type}") end end end