We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b792814 commit 55b69e5Copy full SHA for 55b69e5
spec/core/data_spec.rb
@@ -0,0 +1,12 @@
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
+end
0 commit comments