There was an error while loading. Please reload this page.
1 parent b792814 commit ce6ab28Copy full SHA for ce6ab28
spec/core/data_spec.rb
@@ -0,0 +1,13 @@
1
+require 'core/spec_helper'
2
+
3
+RSpec.describe ZendeskAPI::Data do
4
+ describe ".new_from_response" do
5
+ let(:response) { double(:response) }
6
7
+ it "returns an instance with the response" do
8
+ expect(described_class.new_from_response(client, response))
9
+ .to be_instance_of(described_class)
10
+ end
11
12
13
+end
0 commit comments