mirror of
https://github.com/atom/atom.git
synced 2026-02-12 23:55:10 -05:00
10 lines
244 B
Ruby
10 lines
244 B
Ruby
require 'test/unit'
|
|
require "fileutils"
|
|
$:.push File.dirname(__FILE__)
|
|
$:.push File.dirname(__FILE__) + '/../lib'
|
|
FIXTURE_PATH = File.expand_path(File.dirname(__FILE__) + '/app_fixtures')
|
|
|
|
def ruby(command)
|
|
`/usr/bin/env ruby #{command}`
|
|
end
|