Sha256: c2beb99f4e82f09f39edd1fa981db95d02ab5b87b1641d194a4cf2ee71e6eacf
Contents?: true
Size: 373 Bytes
Versions: 41
Compression:
Stored size: 373 Bytes
Contents
require 'spec_helper' module Flydata module Api describe DataEntry do describe '#create' do it 'creates data entry' do api_client = double('api_client') allow(api_client).to receive(:post) api = DataEntry.new(api_client) api.create(data_port_id: 1, log_path: 'log-path') end end end end end
Version data entries
41 entries across 41 versions & 1 rubygems