module gameSystem
Class client
....
...
...
def accounts_by_id(account_id)
response = query_account(CGI.escape(account_id))
JSON.parse(response.body)
end
...
...
...
end
我有上面的代码,其中accounts_by_id 方法位于类Client 中。此方法返回 JSON.parse(response.body)。有谁知道我如何在rails中模拟或使用存根来返回一些东西。