monde (owner)

Revisions

gist: 12631 Download_button fork
public
Public Clone URL: git://gist.github.com/12631.git
Embed All Files: show embed
Text #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# a test harnessing the exit result from dev_tools/github.rb
require 'test/unit'
require 'rubygems'
 
class TestGithub < Test::Unit::TestCase
 
  def test_build_github_gem
    result = `ruby #{File.join(File.dirname(__FILE__), "..", "dev_tools", "github.rb")}`
    puts result
    assert_equal 0, $?.exitstatus
  end
 
end