Skip to content

Commit

Permalink
update appveyor tests
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-rock committed Feb 19, 2016
1 parent f574f71 commit 9e0d7e0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ clone_folder: c:\projects\train
clone_depth: 1

cache:
- C:\Ruby21\bin\gem
- C:\Users\appveyor\.gem\ruby\2.1.0
- C:\Ruby21\lib\ruby\gems\2.1.0

install:
- systeminfo
Expand All @@ -33,7 +34,6 @@ install:
- ps: $env:PATH="C:\Ruby$env:ruby_version\bin;$env:PATH"
- ps: Write-Host $env:PATH
- gem install bundler --quiet --no-ri --no-rdoc
- gem update --system 2.4.5
- ruby --version
- gem --version
- bundler --version
Expand Down
6 changes: 3 additions & 3 deletions test/windows/local_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@

it 'verify os' do
os = conn.os
os[:name].must_equal nil
os[:name].must_equal 'Server 2012 R2 Datacenter'
os[:family].must_equal "windows"
os[:release].must_equal "Server 2012 R2"
os[:arch].must_equal nil
os[:release].must_equal '6.3.9600'
os[:arch].must_equal '64-bit'
end

it 'run echo test' do
Expand Down
8 changes: 4 additions & 4 deletions test/windows/winrm_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@

it 'verify os' do
os = conn.os
os[:name].must_equal nil
os[:family].must_equal "windows"
os[:release].must_equal "Server 2012 R2"
os[:arch].must_equal nil
os[:name].must_equal 'Server 2012 R2 Datacenter'
os[:family].must_equal 'windows'
os[:release].must_equal '6.3.9600'
os[:arch].must_equal '64-bit'
end

it 'run echo test' do
Expand Down

0 comments on commit 9e0d7e0

Please sign in to comment.