btcpay/spec/btcpay_spec.rb

15 lines
308 B
Ruby

# frozen_string_literal: true
RSpec.describe BtcPay do
it 'has a version number' do
expect(BtcPay::VERSION).to eq('0.1.0')
end
describe '.new' do
it do
expect(described_class.new(auth_token: '123', base_url: 'http://localhost'))
.to be_a(BtcPay::Client::Base)
end
end
end