Created
September 24, 2008 18:37
-
-
Save monde/12631 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment