We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f38062 commit 9590f82Copy full SHA for 9590f82
test/integration/test_discovery_v2.rb
@@ -246,6 +246,18 @@ def test_delete_user_data
246
)
247
assert(service_response.nil?)
248
end
249
+
250
+ def test_analyze_document
251
+ skip "CPD only. Do not run on premium"
252
+ analyze_data = File.open(Dir.getwd + "/resources/test_enrichments.csv")
253
254
+ service_response = service.analyze_document(
255
+ project_id: @project_id,
256
+ collection_id: @collection_id,
257
+ file: analyze_data
258
+ )
259
+ assert(service_response.nil?)
260
+ end
261
262
else
263
class DiscoveryV2Test < Minitest::Test
0 commit comments