mirror of
https://github.com/retailcrm/api-client-ruby.git
synced 2024-11-23 13:36:07 +03:00
17 lines
281 B
Ruby
17 lines
281 B
Ruby
# encoding: utf-8
|
|
|
|
require 'minitest/autorun'
|
|
require 'minitest/spec'
|
|
|
|
require_relative '../lib/retailcrm'
|
|
require_relative './bootstrap'
|
|
|
|
describe Retailcrm do
|
|
|
|
before do
|
|
@bootstrap = Bootstrap.new
|
|
@api = Retailcrm.new(@bootstrap.api_url, @bootstrap.api_key)
|
|
end
|
|
|
|
end
|