Initial commit to libvirt-ext.
This commit is contained in:
commit
328a804dda
9 changed files with 179 additions and 0 deletions
18
test/helper.rb
Normal file
18
test/helper.rb
Normal file
|
@ -0,0 +1,18 @@
|
|||
require 'rubygems'
|
||||
require 'bundler'
|
||||
begin
|
||||
Bundler.setup(:default, :development)
|
||||
rescue Bundler::BundlerError => e
|
||||
$stderr.puts e.message
|
||||
$stderr.puts "Run `bundle install` to install missing gems"
|
||||
exit e.status_code
|
||||
end
|
||||
require 'test/unit'
|
||||
require 'shoulda'
|
||||
|
||||
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
||||
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
||||
require 'libvirt-ext'
|
||||
|
||||
class Test::Unit::TestCase
|
||||
end
|
7
test/test_libvirt-ext.rb
Normal file
7
test/test_libvirt-ext.rb
Normal file
|
@ -0,0 +1,7 @@
|
|||
require 'helper'
|
||||
|
||||
class TestLibvirtExt < Test::Unit::TestCase
|
||||
should "probably rename this file and start testing for real" do
|
||||
flunk "hey buddy, you should probably rename this file and start testing for real"
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue