Sha256: e487ee0aeac44cb6a8092a8daee6b4ed7c0ae6d7ec5fc2cada9d01f1c77deb12
Contents?: true
Size: 325 Bytes
Versions: 12
Compression:
Stored size: 325 Bytes
Contents
require 'spec_helper' describe FbGraph2::Struct::AppInsight do let(:app_insight) do FbGraph2::Struct::AppInsight.new( time: '2015-07-13T08:00:00+0000', value: '3' ) end subject { app_insight } its(:time) { should == Time.parse('2015-07-13T08:00:00+0000') } its(:value) { should == '3' } end
Version data entries
12 entries across 12 versions & 1 rubygems