Initial commit of test framework

This commit is contained in:
Brian Cain 2015-10-09 22:26:20 -07:00
parent 54893cf5fb
commit e613a6818d
3 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,10 @@
require 'spec_helper'
require_relative '../../lib/vmfloaty/pooler'
describe Pooler do
describe "#list" do
it "fails to be a passing test" do
expect(true).to be false
end
end
end