Sha256: 274177557636e70ac24d5150f163241e6fdcf6fc9186be90bb583b2b1021ba7f
Contents?: true
Size: 360 Bytes
Versions: 46
Compression:
Stored size: 360 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') api_client.stub(:post) api = DataEntry.new(api_client) api.create(data_port_id: 1, log_path: 'log-path') end end end end end
Version data entries
46 entries across 46 versions & 1 rubygems