aboutsummaryrefslogtreecommitdiffstats
path: root/actionwebservice/test/abstract_client.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionwebservice/test/abstract_client.rb')
-rw-r--r--actionwebservice/test/abstract_client.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionwebservice/test/abstract_client.rb b/actionwebservice/test/abstract_client.rb
index 70d2d21124..0197b87d63 100644
--- a/actionwebservice/test/abstract_client.rb
+++ b/actionwebservice/test/abstract_client.rb
@@ -4,7 +4,7 @@ require 'webrick/log'
require 'singleton'
module ClientTest
- class Person < ActionService::Struct
+ class Person < ActionWebService::Struct
member :firstnames, [:string]
member :lastname, :string
@@ -13,7 +13,7 @@ module ClientTest
end
end
- class API < ActionService::API::Base
+ class API < ActionWebService::API::Base
api_method :void
api_method :normal, :expects => [:int, :int], :returns => [:int]
api_method :array_return, :returns => [[Person]]