mirror of
https://github.com/puppetlabs/vmfloaty.git
synced 2026-01-25 21:28:40 -05:00
Initial commit of test framework
This commit is contained in:
parent
54893cf5fb
commit
e613a6818d
3 changed files with 14 additions and 0 deletions
3
Gemfile
3
Gemfile
|
|
@ -3,4 +3,7 @@ source 'https://rubygems.org'
|
|||
gem 'commander'
|
||||
gem 'faraday'
|
||||
|
||||
gem 'rspec'
|
||||
gem 'webmock'
|
||||
|
||||
gemspec
|
||||
|
|
|
|||
|
|
@ -1 +1,2 @@
|
|||
require 'vmfloaty'
|
||||
require 'webmock/rspec'
|
||||
|
|
|
|||
10
spec/vmfloaty/pooler_spec.rb
Normal file
10
spec/vmfloaty/pooler_spec.rb
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue