Sha256: 46bf9025e526b78f24b67e667fb5939fbdf4e966153bf4f2dcdf055cc403bbaa

Contents?: true

Size: 395 Bytes

Versions: 2

Compression:

Stored size: 395 Bytes

Contents

require "minitest/autorun"
require "gnome-campfire-notifications"
require "vcr"
require "webmock"

VCR.configure do |c|
  c.cassette_library_dir = 'test/cassettes'
  c.hook_into :webmock
end

GnomeCampfireNotifications.class_eval do
  def load_dummy_config(hash = {})
    @config = {
      token:     'abcdefg12345678',
      roomid:    1,
      subdomain: 'example'
    }.merge(hash)
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gnome-campfire-notifications-0.2.1 test/helper.rb
gnome-campfire-notifications-0.2.0 test/helper.rb