File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 5353 run : |
5454 bundle install
5555 bundle exec rake clean_live set_ci_credentials spec:live
56+ bundle exec rake clean_live
5657 bundle exec rspec spec/live --only-failures
Original file line number Diff line number Diff line change 11require 'core/spec_helper'
22
3- describe ZendeskAPI ::Topic do
3+ RSpec . describe ZendeskAPI ::Topic do
4+ before :all do
5+ VCR . configure do |c |
6+ @previous_allow_http_connections = c . allow_http_connections_when_no_cassette?
7+ c . allow_http_connections_when_no_cassette = true
8+ end
9+ client . topics . fetch! . map ( &:destroy! )
10+ ensure
11+ VCR . configure do |c |
12+ c . allow_http_connections_when_no_cassette = @previous_allow_http_connections
13+ end
14+ end
15+
416 def valid_attributes
517 {
618 :name => "My Topic" ,
You can’t perform that action at this time.
0 commit comments