Skip to content

Commit c470247

Browse files
committed
Merge pull request #16 from skrobul/vcr
Record the API interactions with VCR
2 parents 9f3f541 + 9c2096f commit c470247

26 files changed

Lines changed: 3546 additions & 51 deletions

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ spec/reports
1212
test/tmp
1313
test/version_tmp
1414
tmp
15+
# Gemfile.lock shouldn't be checked in for gems
16+
Gemfile.lock
1517

1618
# YARD artifacts
1719
.yardoc
@@ -21,4 +23,4 @@ doc/
2123

2224
# Extra's not part of the template
2325
.buildpath
24-
.project
26+
.project

test/docker/4.2.5/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ RUN yum -y install wget which
55
ADD https://raw.githubusercontent.com/zenoss/core-autodeploy/4.2.5/core-autodeploy.sh ./
66
ADD https://raw.githubusercontent.com/zenoss/core-autodeploy/4.2.5/secure_zenoss.sh ./
77
ADD https://raw.githubusercontent.com/zenoss/core-autodeploy/4.2.5/zenpack_actions.txt ./
8-
RUN chmod +x ./core-autodeploy.sh
9-
RUN echo -e "\ny\n" | ./core-autodeploy.sh
8+
RUN chmod +x /core-autodeploy.sh
9+
RUN echo -e "\ny\n" | /core-autodeploy.sh
1010
ADD remote_start.sh ./

test/fixtures/.gitkeep

Whitespace-only changes.

test/fixtures/vcr_cassettes/3_2_1_initial_connection.yml

Lines changed: 545 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/fixtures/vcr_cassettes/3_2_1_test_0001_returns_an_Array_of_devices_when_searched_by_name.yml

Lines changed: 85 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/fixtures/vcr_cassettes/3_2_1_test_0002_returns_device_uptime_when_asked.yml

Lines changed: 110 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/fixtures/vcr_cassettes/3_2_1_test_0003_returns_an_Array_of_events_for_a_device.yml

Lines changed: 80 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/fixtures/vcr_cassettes/3_2_1_test_0004_returns_an_Array_of_historical_events_for_a_device.yml

Lines changed: 80 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)