diff --git a/lib/temporal.rb b/lib/temporal.rb index 4ba588a3..1db57c72 100644 --- a/lib/temporal.rb +++ b/lib/temporal.rb @@ -28,6 +28,7 @@ module Temporal :fetch_workflow_execution_info, :complete_activity, :fail_activity, + :get_workflow_history, :list_open_workflow_executions, :list_closed_workflow_executions, :query_workflow_executions, diff --git a/spec/unit/lib/temporal_spec.rb b/spec/unit/lib/temporal_spec.rb index 47ccd73d..9e7a1a2f 100644 --- a/spec/unit/lib/temporal_spec.rb +++ b/spec/unit/lib/temporal_spec.rb @@ -61,6 +61,9 @@ it_behaves_like 'a forwarded method', :complete_activity, 'test-token', StandardError.new end + describe '.get_workflow_history' do + it_behaves_like 'a forwarded method', :get_workflow_history, 'test-namespace', 'x', 'y' + end end describe '.configure' do